About 763,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

    Enter the console/scripting mode by using winscp.com; or /console command-line parameter with winscp.exe. For details see console/scripting command-line parameters. For automation, commands …

  3. 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

  4. 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 …

  5. 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 …

  6. 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 …

  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. Automate file transfers (or synchronization) to FTP server or SFTP ...

    This guide contains a simplified description of automating operations on FTP/SFTP server with WinSCP. You may want to see detailed documentation of the scripting functionality instead. WinSCP offers …

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

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

  10. How to send arbitrary FTP commands in C# - Stack Overflow

    Jan 27, 2016 · The only way to specify a FTP command is through the Method property, and the documentation states : Note that the strings defined in the WebRequestMethods.Ftp class are the …