Tagged Questions
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.
5
votes
4answers
426 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 ...
2
votes
1answer
716 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
237 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
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
3answers
220 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
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
258 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
793 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
4answers
861 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
15 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
30 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
34 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
83 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
51 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
1answer
89 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
102 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
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
318 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
878 views
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 ...
0
votes
1answer
770 views
How to use FTP get/put from Solaris to IBM Mainframe?
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 ...
0
votes
1answer
116 views
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 ...
0
votes
3answers
623 views
Dir exists or not on FTP
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 = ...
0
votes
0answers
119 views
FTP Asynchronous Connection class
I need FTP Asynchronous Connection class to implement the FTP CLIENT program, Where I can find that.
0
votes
1answer
934 views
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 ...
0
votes
2answers
526 views
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 ...
0
votes
4answers
1k views
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 ...
0
votes
3answers
3k views
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 ...