Quantcast
Channel: Windows Batch script to download N latest files from FTP and feed them to an EXE file - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by Martin Prikryl for Windows Batch script to download N latest files...

You can use following PowerShell script using WinSCP .NET assembly:param ( $sessionUrl = "ftp://user:mypassword@example.com/", $localPath = "c:\\downloaded\\", $remotePath = "/home/user/", $count =...

View Article



Answer by cyberponk for Windows Batch script to download N latest files from...

You can start by creating an FTP script in a batch file:@echo offecho YOURUSERNAME> ftpcmd.datecho YOURPASSWORD>> ftpcmd.dat:: DO WHATEVER YOU NEED HERE echo quote SYST>> ftpcmd.dat echo...

View Article

Windows Batch script to download N latest files from FTP and feed them to an...

I am more familiar with Bash and in Bash what I am doing here would be easy.I would like to create a Windows batch script to download the N latest files from an FTP server and then feed the filenames...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images