Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
3k views

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.
6
votes
3answers
3k views

how dropbox works

Does anyone know how dropbox really works, or it is just a ftp client with a easy to use web interface and support for many plarforms? I'm using dropbox as anyone else from here, but what make's it ...
5
votes
4answers
430 views

how to delete file from ftp server using java?

How can I delete a file from an ftp server using a java program? I am successfully able to upload files on the ftp using the following code: public static void main(String[] args) throws IOException ...
4
votes
1answer
277 views

FTP file upload failure Java

I use Apache's FTPClient and FTPServer libraries in my Java project. Server and client are on the same machine. My FTPServer is supposed to be a local server,nothing related to the Internet. I can ...
4
votes
2answers
3k views

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 ...
4
votes
4answers
3k views

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 ...
2
votes
1answer
726 views

Monitoring progress using Apache Commons FTPClient

I have a simple FTPClient class that downloads files form an FTP server. I also need to monitor progress of the download, but I do not see a way how. The actually download files function is a simple ...
2
votes
1answer
238 views

How do I queue FTP commands in Twisted?

I'm writing an FTP client using Twisted that downloads a lot of files and I'm trying to do it pretty intelligently. However, I've been having the problem that I'll download several files very quickly ...
1
vote
1answer
24 views

Android FTP client application- how to download the file from FTP Server

i am using org.apache.commons.net.ftp library, i have uploaded the file but when i try to download the file from FTP Server to my emulator's virtual SDCard it didn't work. how to specify the ...
1
vote
1answer
32 views

How do I prevent Debian FTP from using the SYST command

If I turn on debug, which I need for some test scripts I inherited, the ftp client attempts to use the SYST command. This throws out of sync the expected commands and responses which the script is ...
1
vote
1answer
207 views

Java - Storing File on FTP Server fails

I am trying to store a byteArrayInputStream as File on a FTP Server. I could already connect to the Server and change the working path, but triggering the method to store the Stream as File on the ...
1
vote
3answers
224 views

Alternative to Windows FTP client

We have a legacy system that uses the Windows FTP client with some FTP script files to manipulate files over FTP. We've found the Windows FTP client to be fairly unreliable though in regards to error ...
1
vote
1answer
162 views

vc++ - socket is not writing into the port

I am trying to create a ftp client with uploading a file capability. But the socket is not sending the message into the server, even though it got the connection with the server. See the code below ...
1
vote
0answers
769 views

Apache-Commons: Getting a CopyStreamException: IOException when I use CopyStreamEvent

I am trying to upload a file to an FTP server using the apache-commons' FTPClient class. storeFile() works with no error, but instead of using it, I wanted to create a listener so I could keep an eye ...
1
vote
1answer
386 views

Ftp file downloaded path has problem?

I have java code for file download through ftp, after download the file, it goes to default path. The specified destination path is not having the downloaded file. Why? my code is, public class ...
1
vote
1answer
1k views

Error in FTP upload “553 Could not create file”

import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPReply; import org.apache.commons.net.ftp.FTPFile; import java.io.*; public class FTPUpload{ public static boolean ...
1
vote
4answers
261 views

Free alternative to RocketStream Station?

I just tried RocketStream Station (www.rocketstream.com) as an alternative to FTP for transferring large files over long Internet distances (relatively high latency) and was blown away by its ...
1
vote
1answer
796 views

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 ...
1
vote
2answers
81 views

Thread Synchronization and Thread Pausing\Resuming

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 ...
1
vote
4answers
864 views

Non-interactive command-line FTP client alternative to weex

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 ...
0
votes
0answers
19 views

android ftp no address associated with hostname

I'm running FTP-server on one AndroidPhone, another tryes to connect using script on python... But cliet gives an error: socket.gaierror: [Errno 7] no address associated with hostname According ...
0
votes
1answer
32 views

File transfer using FTP protocol in C#

I have some Electronic devices, I have to copy files from my system to device and device to system using FTP protocol in C#. Currently I am doing with FileZilla. How I can transfer ...
0
votes
1answer
44 views

Access properties of a file at FTP server

I want to access properties of a file named AH_store_20120117_00432.csv at ftp server with url ftp.mysite.com. Properties such as last modified date/time,size, etc. I am accessing ftp server from ...
0
votes
0answers
51 views

Configure Pure-FTPd to limit access to FTP to some IP?

Is there any way to limit connection to FTP, to allow only connection from certain IP, or range of IPs if Pure-FTPd is installed on server. Something like .ftpaccess, ftp access configuration file? ...
0
votes
1answer
27 views

FTP Client listFiles() work in some machines

I have a program that make use of FTP Client, it is running in several machines and it stoped working in one of those machines. Making the debug I can see that the problem is on listFiles(), ...
0
votes
0answers
35 views

Change the time-stamp ftp

I own an IIS 7 based ftp service with a unix directory listing on windows 2008 R2 server When i connect to the ftp server and use dir ( list directory ) command i get this out put: -rwxrwxrwx 1 ...
0
votes
1answer
85 views

FTP upload in Silverlight app

That would probably sound weird but in spite of all FTP protocols's weaknesses and insecureness my boss still wants me to send files to the ftp server. It's an out-of window app with elevated trust. ...
0
votes
0answers
52 views

apache FTPClient makeDirectory() encoding issue

I am having a problem with creating a directory with some accents as a name. For example makeDirectory("tést") will indeed create folder tést on the ftp file system, but the files that I put inside ...
0
votes
0answers
34 views

FTPClient file write-upload

At first i am reading the file from the ftp,do some modifications to it and then upload it again.here i am unable to upload a new file my code is. String strLine=""; String str=""; creating ...
0
votes
1answer
90 views

Sending '@' (at sign) character in AS3 socket for FTP Login

I'm trying to create a FTP Client in AS3. It works well with almost all my ftp hosts, but I'm not able to login in hosts in wich I have an "@" (at commercial) character inside the username. It seems a ...
0
votes
0answers
105 views

How to send a file via FTP in android adb shell?

How to send a file via FTP in android adb shell ? I have installed busybox. I want to recieve a file from a FTP server in adb shell.These much of commands are supporting. Somebody please help..?
0
votes
0answers
153 views

changeWorkingDirectory on Apache Commons FTP causing error “Connection is not open” on logout

We have some code that is supposed to use the Apache commons FTP library to upload files to a partner's ftp server. The code looks like this... private void ftp(ArrayList<File> files) { ...
0
votes
2answers
179 views

Ftp client cannot transfer file using IPV6

I am writing java code to send file through ftp as followed. The server that i used is FileZilla Server software at localhost. public static void main(String[] args) { try { String ...
0
votes
2answers
177 views

How can I check if a file exists on FTP server?

I am using apache FTPClient on android. I want to download a file from ftp server. But I want check if it exists on server before downloading. How can I check this? Thanks, my code: public static ...
0
votes
1answer
115 views

Why doesn't FTPClient.setDefaultTimeout work?

I am trying to make a ftp connection in Java with FTPClient. I wanted to look what happens when i separate the line between Server and Client. My application freezed about 30seconds and then it thows ...
0
votes
1answer
107 views

What is the right java API to get filtered file list from ftp server

I am just wondering how can I get the filtered file list from ftp server by maybe using wildcard in the parameter of some java api, I can't find the right api down here anyways, thanks a lot for any ...
0
votes
1answer
349 views

Apache FTPClient upload jar files ends up being corrupt

I seem to be uploading corrupt jar files to a remote server using Apache's FTPClient 3.0.1. I am also setting the file and file transfer type to binary. FTPClient ftp = new FTPClient(); ...
0
votes
1answer
224 views

open source java FTP client library [closed]

Possible Duplicate: What Java FTP client library should I use? I am looking for open source FTP client library which exposes APIsI.I will be calling these APis from my java program .The ...
0
votes
0answers
95 views

Alex FTPS Client

Has anybody tried and used Alex's FTPS Client? There is a problem I can't solve with one FTP server. The problem occurs when the FTPS client issues the LST command. It is a timeout error. I found out ...
0
votes
1answer
297 views

FTPClient.listnames() hangs when try to get list of files from server

I am trying to get the list of files from FTPserver. My directory on server is "upload" directory, and i am trying to get the file name list from that directory using apache ftpclient library. I ...
0
votes
1answer
227 views

what library is better between libcurl and chilkat?

i'm newbie in FTP connection programming in Cocoa. I found 2 library that i can choose for make my app, but i dont know what's the best between these libraries. The libraries are libcurl and chilkat ...
0
votes
1answer
418 views

View & Open files downloaded on Android device

I'm having an Android Ftp Client, I download different types of files (.txt , .pdf , .mp3) from the server. And then I list all the files I downloaded. So my questions are as follows: If the file is ...
0
votes
1answer
321 views

How to access the file downloaded in the Internal Device memory

How can I access the file I downloaded in the Internal Memory of my Android device. Meaning, I downloaded a file from the server on my device but I can't find it. And how can I view it & access it ...
0
votes
1answer
1k views

C# : FTPClient How to recursively delete a folder with the files within?

I want to delete a folder in FTP and it's files recursively? Any example code do I can implement? Thank you
0
votes
1answer
262 views

C# : FTP How to identify 550 ftp error ,the Directory already exists or Directory not found

C# : FTP How to identify 550 ftp error ,the Directory already exists or Directory not found. Because 550 is can be both of them.
0
votes
1answer
581 views

C# : How can FTPClient delete a directory?

I want to Delete a folder in ftp. Can FTPClient object delete it?
0
votes
1answer
321 views

how using FTP service in Oracle form!

I am using Oracle forms for my application. I would like to copy one directory from my local computer to a ftp address. would you please help me how I can handle this problem in oracle forms or is it ...
0
votes
1answer
69 views

Some way to send data from one FTP server to another without intermediary?

I'm trying to move a large amount of files from one CDN to another. I know that they have a very high-speed connection to each other, so what I'd like to do is connect them directly, but the only ...
0
votes
1answer
824 views

Apache FTPClient - incomplete file retrieval on Linux, works on Windows

I have a java application on Websphere that is using Apache Commons FTPClient to retrieve files from a Windows server via FTP. When I deploy the application to Websphere running in a Windows ...
0
votes
1answer
90 views

Resource ftp-server/client for .net

Anyone know where could I find resource for ftp client and ftp server? I need sample source-code to create customize ftp client and ftp server. Thank. Regard,

1 2