ftp

Setting Emacs Tramp to store local backups

I love emacs, but something has been nagging me. I can't seem to get emacs to store local backups of files when I am editing them via tramp. Currently, when I edit a local file a set of old versions is stored in the /tmp/myusername/emacs_backup folder. However, when I am FTPing via tramp, old versions aren't stored there (I assume it i...

download xml files from 3 different directory of a ftp server to a local system by using ssis.

Hi, I am new to ssis and my question There are 3 different locations of a ftp server(c:\temp1\,c:\temp2\,c:\temp3) and I have to check all the three locations and if any xml files exist then I have to download to my local working directory(c:\workingxml) in a specific time let's say within 4 A.M. to 8 A.M. and after 8A.M.the 3 differe...

vim's netrw plugin show error message:"The system cannot find the file specified." when change remote directory via FTP

remote ftp server is microsoft ftp. so, i suspect that this is a bug. can anyone knows what happend? ...

FTP Get works on windows but not on linux.

I am doing an FTP Get in Java with FTP Client which if I run on windows works fine but when I run the same on a linux box it get me the file with some modifications. I have a test.tar.gz file (bunch of text files) which is of size 2872578 but it shows up as 2872541 when I run my java program on linux. Anyone faced a similar problem? //...

How to upload a file on FTPS server using m2crypto

I am trying to use ftps to upload file to our FTP server. Login is trivial and works: from M2Crypto import ftpslib ftp = ftpslib.FTP_TLS() ftp.connect(host) ftp.login(username, password) as well as descending into directory for dir in directory: ftp.cwd(dir) However, when trying to retrieve directory content: if directory_name...

C# .NET FTP missing dependency? FTP

I have some c# code that downloads files from an FTP server. It works fine when I run it and it works fine when I install it on my development machine then run it. However, when I try to install it on another machine (a Windows XP SP3 VM) it doesn't work. No exceptions are thrown or anything. Here is the short version of my code: re...

Is there a way to make Netbeans file uploads not fail on a single error?

Is there a way to make Netbeans's FTP uploads less error sensitive(reconnect and retry on error)? It is simply unable to handle large amounts of files. If I upload 1000 files and there is some sort of failure at the 400th file, it will fail for the rest of the files, and it will not record the files that failed. So I will have to upload...

commons net ftp issue

I am facing an issue where it appears that my FTP connection is correct and no errors are received, but the file is not placed on the ftp server. I am using commons-net-ftp. Code: int retCode = 0; FTPClient client = new FTPClient(); client.addProtocolCommandListener(new PrintCommandListener(new PrintWriter(System.out)...

how to resolve ftp site using boost.asio?

Hello: Boost.asio documentation doesn't support any ftp examples. `boost::asio::io_service io_service; tcp::resolver resolver(io_service); tcp::resolver::query query("www.boost.org", "http"); tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);` that resolve http site and get an HTTP endpoint. but tcp::resolver::que...

unable to download or upload the files using ftp script

i am unable to download or upload the files using ftp script. i can connect to ftp server find the size of the file using ftp_size but when i download it using both ftp_get and ftp_fget the file is empty.i cant even seem to see the list of directories using ftp_nlist().please help me out here? ...

FTP upload - memory leak problem

Hi, I'm working on a personal project that uploads and downloads big files using FTP protocol. It's working fine except the memory leak that I recently noticed. I don't know exactly what the problem is. It could be memory leak or bad programming. The memory amount used by this application increasing every second while uploading. Here is ...

using ftp4j to connect through proxy

Is this correct? I could swear it is but its not working and we are trying to track down if its a problem with my code or the proxy setup. FTPClient client = new FTPClient(); client.setConnector(new SOCKS5Connector(proxy_host, proxy_port)); client.connect(ftp_host, ftp_port); client.login(ftp_user, ftp_pass); /*some stuff*/ client.di...

Upload file via Ant FTP task in Maven

I'm trying to upload a file using an Ant task. If I use Ant directly the file is uploaded, but if I call the ant task via Maven (using the maven-antrun-plugin) I get the following error: An Ant BuildException has occured: The following error occurred while executing this line: /home/me/proj/build.xml:15: Problem: failed to create task ...

how can I login anonymously with ftp (/usr/bin/ftp) ?

I'm trying to connect to an FTP server which allows anonymous access, I don't know how to specify the appropriate username/password required to do this though. I've tried using anonymous/anonymous as the user/pass with no luck, as well the empty string and various combinations of the two, etc. It's gotta be something simple that I'm mi...

Can I give someone an FTP account so they can only see and edit the files they have made?

Hey, Me and several other people all have FTP access to the same folder. We're working on a website together but I don't want to give the other coders complete access to my site. I only want them to be able to create files and edit their own files that they create. For example I want to give everyone access to public_html/pages but th...

Ftp access denied to file after failed upload

I'm uploading file to ftp. Sometimes upload fails and on ftp chunk of a file leaves. e.g. 20 mb from file that have 50mb. Then I receive "550 Access is denied" when trying to re-upload file or delete that chunk of trash. Could smb advice a solution? ...

Batch FTP for manging files in my domain

i use cpanel to upload everything to my websites... but the problem is that i have to browse select and upload each and every image. page or file individually... is there a way i can do this in batch ...

How to test file transfer restarting code [setRestartOffset(offset) in Commons NET API]?

Hi, I wrote small FTP Client Applet which uploads files to FTP Server using Commons Net API. In my code I handled 'CopyStreamException' and trying to restart the same file transfer by setting the offset using FTPClient.setRestartOffset() method. Is there any proper way to test this part of the code? I tried by disconnecting my interne...

How to synchronize files over FTP with Eclipse RSE?

I installed Helios, which has the latest version of the RSE package, and I could copy files from the remote server just fine, but I don't seem to be able to use the "Review/Synchronize" option. I select the folder on the remote directory, specify the "Into folder" of the local directory, hit Finish, and nothing ever gets synced. Thoughts...

Poor FTP Performance due to delayed Ack : Solutions exist for Android?

Hello, i have a Problem using FTP connection on Android 2.2 devices. My app uses AndFTP via intent and loads data from a FTP Server connected via Wifi to the handset. The FTP downloadspeed is only 7kByte/s. I had the same speed on my Windows XP Notebook, then i changed the delayed acknowledge setting. So now my Notebook reaches 30...