Tagged Questions
FTP shortened from File Transfer Protocol is a standard network protocol, used for transfering files from one host to another, over a TCP-based network.
41
votes
12answers
49k views
Java: What is the best way to SFTP a file from a server
What is the best was to retrieve a file from a server using SFTP (as opposed to FTPS) using Java?
I'll leave the particular definition of best up to you but in my mind it should include free :)
32
votes
7answers
42k views
How do I add FTP support to Eclipse?
I'm using Eclipse PHP Development Tools. What would be the easiest way to access a file or maybe create a remote project trough FTP and maybe SSH and SFTP?.
22
votes
13answers
33k views
How do you recursively ftp a folder in linux
I'm trying to ftp a folder using the command line ftp client, but so far I've only been able to use 'get' to get individual files.
20
votes
2answers
21k views
How to check if file exists on FTP before FtpWebRequest
I need to use FtpWebRequest to put a file in a FTP directory. Before the upload, I would first like to know if this file exists.
What method or property should I use to check if this file exists?
20
votes
9answers
8k views
Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.)
I'm a bit surprised I haven't found a good open source library for performing common network tasks. There are a few very good commercial libraries, but they're too expensive to use on an open source ...
19
votes
8answers
16k views
What Java FTP client library should I use?
Since I received no positives answers to my last question. I will try to write a Java FTP upload applet myself.
My question is: "Can you recommend a Java FTP client library for me to use?"
I want it ...
16
votes
7answers
14k views
Differences between SFTP and “FTP over SSH”
While looking for an SFTP client in C# SSH File Transfer Protocol (SFTP), I've come across these two suitable projects - one and two.
While trying to understand the basics, I came across this ...
14
votes
7answers
10k views
C# - Free FTP client library for C-sharp
Im wondering if anyone here can recommend a FTP library(class) for C#.. That is free.
I've been looking around the net, but all the classes I've found are very poor written, and have very poor ...
13
votes
6answers
292 views
Redirecting to FTP URL with username and password in Safari
I've got a problem with Safari I haven't been able to solve:
<?php
header("Location: ftp://username:password@somedomain.org/somefile.zip");
?>
This code-snippet works in every browser ...
13
votes
10answers
1k views
How to wean myself from FTP in favor of Version Control
I have heard that uploading your website with FTP is now for n00bs, but it's the only way I've known how for the 8 or so years I've been building websites. Apparently all the buzz now is using a ...
13
votes
7answers
14k views
What's the best way to automate secure FTP in PowerShell?
I'd like to automate the FTP download of a database backup file using PowerShell. The file name includes the date so I can't just run the same FTP script every day. Is there a clean way to do this ...
13
votes
10answers
7k views
Combined SVN FTP system?
Are there any systems out there where one can check in changes for a website and have that automatically update the website.
The website effetively runs off the latest stable build the whole time ...
12
votes
6answers
832 views
Web site backup in PHP?
Does anybody know a clean PHP-based solution that can backup remote web sites using FTP?
Must haves:
Recursive FTP backups
Possible to run through a cron job
Easy to configure (easy adding of ...
12
votes
1answer
26k views
Is there a public secure FTP site for testing?
I'm working on automating a process that downloads a file from a secure FTP server. I've had problems with the vendor's security certificate and I want to find a clean secure FTP server to test ...
11
votes
2answers
187 views
HTTP Uploads with Resource Forks
I'm building a PHP based upload service for some of our clients. I am using SWFUpload so that I can view the progress of a file as it uploads. I've got it pretty much built, but am running into one ...
11
votes
3answers
911 views
What will happen if Perl tries to call move() on a file that is being uploaded?
Someone is FTPing a file of size 10Mb to folder on a linux server.
While the file is in transition a cron wakes up and fires off a Perl script that is designed to look at the ftp folder and move ...
11
votes
10answers
15k views
FTP File Upload with HTTP Proxy
Is there a way to upload a file to a FTP server when behind an HTTP proxy ?
It seems that uploading a file is not supported behind an HTTP Proxy using .Net Webclient. ...
11
votes
19answers
9k views
Is there an alternative to FTP?
I am trying to find an alternative to FTP? It's a single file transfer up to 4gb.
Any suggestions? maybe HTTP? Or should I stick it out with FTP?
More info -
We have an app that we distribute to ...
10
votes
8answers
18k views
How to script FTP upload and download?
I'm attempting to make a batch file to upload a file to ftp server.
If I type it in manually it works fine but when i run the batch file it halts after it's connected... it says
connected to ...
10
votes
3answers
2k views
Comparing HTTP and FTP for transferring files
What are the advantages (or limitations) of one over the other for transferring files over the Internet?
(I am aware of secure forms of both protocols. I'd like to hear comparisons through personal ...
10
votes
6answers
7k views
How to load an optional task into ant without -lib or global installation?
I want to use the FTP task in ant, and I have found the appropriate jar files and got everything working fine. I have put the jar files in a "libs" directory alongside the other files used in the ...
9
votes
12answers
7k views
How to improve the Performance of FtpWebRequest?
I have an application written in .NET 3.5 that uses FTP to upload/download files from a server. The app works fine but there are performance issues:
It takes a lot of time to make connection to the ...
9
votes
2answers
13k views
How do I create a directory on ftp server using C#?
What's an easy way to create a directory on an FTP server using C#?
I figured out how to upload a file to an already existing folder like this:
using (WebClient webClient = new WebClient())
{
...
8
votes
3answers
206 views
How to determine wheter a file is still being transferred via ftp
i've got a directory with files that need processing in batch with php. The files are copied on the server via ftp. Some of the files are very big and take a long time to copy. How can I determine in ...
8
votes
1answer
8k views
How Connect to remote host from Aptana Studio 3
I am using CODA from a long time .. now i use aptana studio 3
my Question
How Connect to remote host from Aptana Studio 3?
thanks
8
votes
4answers
1k views
Testing file uploading and downloading speed using FTP
I am working in a desktop application using java. In my application i have to perform a speed test which will show the file uploading and downloading speed.
For uploading test i am uploading a small ...
8
votes
1answer
3k views
What is the difference between active and passive FTP?
Will anyone please tell me what the difference between active and passive FTP? Which one is preferable?
8
votes
13answers
5k views
Fast Windows PHP editor with SVN and FTP support?
I'm looking for a decent, and fast PHP editor for Windows. Something that runs natively under x64 would be ideal.
I've tried aptana studio, but I'm not impressed with all the excessive bloat. The ...
8
votes
8answers
2k views
Web app deployment Best Practices : how to manage local & live files?
I am writing php web applications, and simply deploy them via FTP.
To make it work, I often have some tweaking/debugging to do given that I have little control over the (free) web server hosting me, ...
8
votes
2answers
2k views
is it possible to make nant run a publish on web application project
is it possible to make nant run a publish on mvc project or a good old web application project
and after the publish make nant FTP the files to the web server
UPDATE: found the solution to the ftp ...
8
votes
3answers
10k views
Using Python's ftplib to get a directory listing, portably
You can use ftplib for full FTP support in Python. However the preferred way of getting a directory listing is:
# File: ftplib-example-1.py
import ftplib
ftp = ftplib.FTP("www.python.org")
...
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.
8
votes
8answers
750 views
Subversion and web development
I'm introducing Subversion into our web shop. I want to want the checked in files to be uploaded into the server via FTP (and as they get use to Subversion, via SFTP). The files are sent to a release ...
7
votes
3answers
126 views
C# Absolute URI removes “..” from URL
I have to upload a file via FTP to ftp://ftp.remoteServer.com
My root directory on remoteServer contains an "upload" and a "download" folder. I need to put my file in the "upload" directory. But on ...
7
votes
2answers
994 views
Is it possible to pass a variable into a Windows FTP script file?
I have a batch script that dynamically creates some files and generates four files with somewhat random filenames based on the time, date, etc. It then needs to upload that file to a server via FTP.
...
7
votes
5answers
9k views
Upload files with ftp using powershell
I want to use powershell to transfer files with FTP to an anonymous FTP server. I would not use any extra packages. How?
There must be no risk that the script hangs or crashes.
7
votes
3answers
4k views
Amazon S3 FTP interface
I am wondering if anyone knows of an FTP interface to Amazon S3?
I am looking for a self-hosted solution. I can do Windows or linux.
FOSS is preferred, but will pay too.
7
votes
1answer
1k views
In VS2008, for FTP Publishing of a website, is there a way to save FTP Logon password?
I like the Visual Studio 2008 IDE integrated (not command line) feature to choose to publish an ASP.NET website to my webserver via FTP. I'm able to store my FTP username but I don't see any option ...
7
votes
3answers
14k views
Upload File to FTP Server on iPhone
I would like to implement logic that uploads file to FTP Server.
I am new in iPhone development, so want to figure out preferred approach. After browsing available API for this task I have managed to ...
7
votes
9answers
10k views
C++ FTP Library?
I am looking for an FTP Library for C++ to do basic ftp functions like authenticate, change directory, upload files, etc. but I can't seem to find one.
I've searched over Google, Sourceforge, and ...
7
votes
12answers
648 views
In protocol design, why would you ever use 2 ports?
When a TCP Server does a socket accept on a port, it gets a new socket to work with that Client.
The accepting socket remains valid for that port and can accept further clients on that port.
Why did ...
7
votes
8answers
17k views
How to avoid SSIS FTP task from failing when there are no files to download?
I'm using SQL Server 2005, and creating ftp tasks within SSIS.
Sometimes there will be files to ftp over, sometimes not. If there are no files, I don't want the task nor the package to fail. I've ...
7
votes
3answers
1k views
File size differences after copying a file to a server vía FTP
I have created a PHP-script to update a webserver that is live inside a local directory.
I'm migrating the script into Python. It works fine for the most part, but after a PUT command the size of the ...
6
votes
1answer
134 views
Error when uploading package to CRAN incoming: 550 access denied
I'm trying to upload a package on CRAN for its first release, but I can't get past the FTP upload.
It seems I do not have write access to ftp://cran.r-project.org/incoming:
550 Access is denied.
...
6
votes
1answer
233 views
FTP client for Windows Phone 7 Mango?
Is there a generic dll that I can use for an FTP client now that Mango has Sockets? I would like to utilize ftp, but I'll work around it if there isn't one. I've done some searching but havent found ...
6
votes
1answer
99 views
How to restore the data from DDMS & Ftp Server?
I've Backup Contacts, Settings, Browser bookmarks & Media files successfully using this code. These data are stored in DDMS & FTP as files. How can i restore these backedup files by ...
6
votes
2answers
323 views
programming ftp: how to abort file transfer?
i am doing small ftp client for recieving some big files from ftp. I have read in RFC that ABOR command is very problematic for servers. Almost all servers i see just continue to send data even after ...
6
votes
8answers
717 views
How To Do a Server To Server File Transfer without any user interaction?
In my scenario, users are able to upload zip files to a.example.com
I would love to create a "daemon" which in specified time intervals will move-transfer any zip files uploaded by the users from ...
6
votes
3answers
276 views
How to know whether the ftp upload via ruby is success?
The following code uploads the file via ftp and it works.
require 'net/ftp'
ftp = Net::FTP.new
ftp.passive = true
ftp.connect("***")
ftp.login("***","***")
ftp.chdir "claimsecure-xml-files"
...
6
votes
3answers
4k views
FileZilla client run in command line
is it possible to run FileZilla client via command line and be able to set server name, user, password, FTP protocol (e.g. FTPES, SFTP), port number? i looked online and can't seem to be able to find ...