About 653,000 results
Open links in new tab
  1. windows - How to ftp with a batch file? - Stack Overflow

    Apr 23, 2013 · Among theses commands are open Computer [Port] to connect to an FTP server, user UserName [Password] [Account] to authenticate with the FTP server, get RemoteFile [LocalFile] to …

  2. Scripting and Task Automation - WinSCP

    WinSCP is a free file manager for Windows supporting FTP, SFTP, S3 and WebDAV.

  3. How to script FTP upload and download - Stack Overflow

    Jun 2, 2009 · If you must use the ftp command, then prepare a script file (for example, commands.txt and run ftp -s:commands.txt. But using cURL, or a PHP/Perl/Python/whatever script may be a better …

  4. How to use passive FTP mode in Windows command prompt?

    Open up two prompts, use one to ftp.exe connect to your source FTP server and one to ftp.exe connect to your destination FTP server. Now establish a passive connection between the servers using the …

  5. Converting Windows FTP script to WinSCP SFTP script

    This guide explains how to convert existing FTP file transfer script using Windows built-in command-line FTP client (ftp.exe) to SFTP script using WinSCP. You can also use it to convert FTP script using …

  6. FTP get and delete multiple files - Stack Overflow

    I have to get and delete multiple files via FTP so I wrote this script: open ftp.myftpserver.org user pass cd folder lcd E:\\localdir mget * mdel * bye This works but is not safe since the folder is

  7. PowerShell Connect to FTP server and get files - Stack Overflow

    Sep 28, 2013 · You use a long directory listing (LIST command = ListDirectoryDetails method) and try to parse a server-specific listing. Many FTP servers use *nix-style listing, where you identify a directory …

  8. Secure FTP using Windows batch script - Stack Overflow

    Apr 22, 2013 · I currently have batch scripts on different servers that transfer a csv file to an FTP server at a different location. My script looks similar to this: echo user ftp_user> ftpcmd.dat echo passw...

  9. windows - Batch file to upload .txt to FTP - Stack Overflow

    Jun 13, 2016 · 13 I have setup a separate FTP account for this. Here is the info: FTP Username: [email protected] FTP Server: ftp.proflightsimulatoreview.com FTP Server Port: 21 …

  10. How to move files using FTP commands - Stack Overflow

    Feb 27, 2012 · How to move files using FTP commands Asked 13 years, 10 months ago Modified 4 years, 7 months ago Viewed 188k times