ftp-client

Open Source FTP Client that supports synchronizing?

Does anyone know of a good open source FTP client for Windows that allows for scheduled synchronizing? I'm needing something also very....very... user friendly. ...

Does anybody know of a tabbed FTP client?

Am I the only person who has the need to view multiple directories at once (usually on the same remote server, but sometimes other ones too)? Disconnecting and reconnecting is driving me crazy. Preferably a free tool, but I'm getting to the stage where I'll try anything! Can you have multiple FireFTP tabs in Firefox? Alternatively, I'v...

Non-interactive command-line FTP client alternative to weex

Hi, I'm looking for a good non-interactive, command line FTP client to be run from a Rakefile. Like Weex, but better. Weex has different problems (for me): It stores its config file in my home dir. I want the FTP config to be part of my project and weex doesn't have a --config-file option or something. The behavior of ignoring files s...

Recursively PUT files to a remote server using FTP

I'm currently in a situation where I have very limited access to a server, but need to upload and download a significant amount of files contained within a single directory structure. I don't have SSH access, so I can't use SCP - and rsync isn't an option either unfortunately. I'm currently using ncftpput, which is great but seems to b...

Issue with encoding UTF-8 when FTPing files

I am able to have my application upload files via FTP using the FTPClient Java library. (I happen to be uploading to an Oracle XML DB repository.) Everything uploads fine unless the xml file has curly quotes in it. In which case I get the error: LPX-00200: could not convert from encoding UTF-8 to UCS2 I can upload what I believe to b...

Detect or prevent Commons Net FTPClient from blocking on read.

I'm using the Commons Net FTPClient class to periodically poll an ftp site and attempt to download a file. Occasionally the thread is blocking indefinitely when trying to read from the site and I wondered if anyone else had encountered this problem and could offer any workarounds? I'm using FTPClient's retrieveFileStream(String) method...

Files are getting corrupted via FTP Client Upload

I tried uploading files to my server my.php (normal local file) <?php $box_title= "SEARCH ME" ?> After uploading via FileZilla FTP Client (remote server file) // SOMETIMES ABOVE FILE BECOMES <?php$box_title= "SEARCH ME"?> // OR SOMETIMES LIKE THIS <?php $box_title= "SEARCH ME" ?> I suspect this is a server related issue, but no...

Parsing File details for Windows FTP Server

Hi, I am trying to connect to FTP server through the c# code and I am getting the list of Files and directories. And that I am saving in a ArrayList(with all attributes). I can find the FTP Server type through the SYS ftp command. I have a regular expression for UNIX based files to parse the file\directories attributes. But I have no exp...

FTP Asynchronous Connection class

Hi, I need FTP Asynchronous Connection class to implement the FTP CLIENT program, Where I can find that. ...

Thread Synchronization and Thread Pausing\Resuming

Hi, I am trying to send the files from local to FTP, for that I am locking the TCPClient before sending the file. And that file sending is doing in another thread. So that the main thread doesn't affected. As when I try to use the locked TCPClient before Unlocking it, it hangs. So how should I proceed, so that at the same time I can sen...

Dir exists or not on FTP

Hi, how to check if some dir exists on the server or not. Although I can check file exists or not through try { FtpWebRequest request=null; request = (FtpWebRequest)WebRequest.Create("ftp://" + webrequestUrl + "/somefile.txt"); request.Credentials = new NetworkCredential(username,...

Sites which provide FTP upload?

I'm working on a website which allows users from different part of world to upload files of size upto 500 MB. The problems are: As it is a HTTP transfer, it is slow. As it is a HTTP transfer, it is non-resumable. Users really suffer because of these two problems. So, I want to find a FTP provider which can provide me the services m...

Apache Commons FTPClient.listFiles

I am using org.apache.commons.net.ftp.FTPClient in one of my applications to work with a FTP server. I am able to connect, login, pwd and cwd. However, when I try to list the files it doesn't return the list of files in that directory, where I know for sure that there are files. I am using the method FTPFile[] listFiles(), it returns an ...

odd behavior with C# ftp client class

I found an ftp client class in c# over a year ago and have been using it in a process that uploads files on a nightly basis. A few days ago we started having a problem where it would time out. I'm not well versed in this so I'm not sure why it's doing this. When the program starts uploading a file it checks to see if it's logged in and...

Issue with org.apache.commons.net.ftp.FTPClient listFiles()

The listFiles() method of org.apache.commons.net.ftp.FTPClient works fine with Filezilla server on 127.0.0.1 but returns null on the root directory of public FTP servers such as belnet.be. There is an identical question on the link below but enterRemotePassiveMode() doesn't seem to help. http://stackoverflow.com/questions/2339855/apache...

How can I make visual studio 2010 deploy (or FTP upload) a page on save?

Just started using Visual Studio 2010, moved over from Netbeans. I kinda liked the Netbeans upload on save functionality, which was useful in development environments when one is constantly making small changes and testing them. As soon as you saved a file, it would be synced to the FTP server. Is it possible to do this in VS? I'm pret...

write() in sys/uio.h returns -1

I'm using Ubuntu Server 9.10 AMD Phenom 2 cpu g++ (Ubuntu 4.4.1-4ubuntu9) 4.4.1 trying to run the application pftp-shit v 1.11, which runs successfully until the remote file list is going to be saved (into .pftp//pftpfxp--). The following code in tcp.cc is executed successfully: int outfile_fd = open(name, O_CREAT | O_TRUNC | O_RDWR |...

How to use FTP get/put from Solaris to IBM Mainframe?

Hi there, For some reason when I try to use get or put from a Solaris box to an IBM mainframe, the ftp client appears to hang. I've tried all sorts of different variations (for example, including using quotes and not), and all I ever get is a "200 Port Request OK". But I never get the prompt back, and eventually the connection breaks. ...

need to add secure ftp file upload area to a client's website

This is a variation on a previous question as I am having tons of trouble finding answers in all my relentless online searches. Am designing a website for an architecture firm. They want their clients to be able to upload files to them, through a link on their site, via ftp. They also want to have a sign in for their clients, and ensure...

FTP client to zip before upload and unzip on the server after upload

I am always working with some big websites that is annoying to upload given the number of small files. I use Filezilla but am happy to buy some commercial solution if there is one out there that can zip the files before upload and then unzip it after upload. Its a pain to have to manually do that all the time. If someone know of any ft...