ftp

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. (http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.proxy.aspx). If there is no workaround ? If not, do you know a good and free FTP library I can use ? Ed...

how can I save the output of windows internal FTP client?

Hi, UPDATED: on win2k it seems it works OK. Sorry for the confusion. MS Windows Vista internal ftp client has a strange behavior. When redirecting its output and error to a file, the errors do not show up there: ftp -n -s:commands.txt host >output.log 2>&1 When running it from Task Scheduler inside a batch file, I don't get a...

Creating a site map of an FTP site

Where I work, we maintain an FTP site that needs occasional cleanup. Are there any tools out there to create a site map of an FTP site? It would greatly simplify clean up tasks. Thanks! ...

Uploading and Downloading Comparison using WebRequest & Sockets

Hiya I am working on an FTP client, can someone tell me the difference in speed and efficiency for using WebRequest and sockets (direct network streams) to download and upload files on the FTP server. (Our files will be video streams.) I am using C#3.5. ...

C# FTP with CD Disabled

I'm trying to get the following code working: string url = String.Format(@"SOMEURL"); string user = "SOMEUSER"; string password = "SOMEPASSWORD"; FtpWebRequest ftpclientRequest = (FtpWebRequest)WebRequest.Create(new Uri(url)); ftpclientRequest.Method = WebRequestMethods.Ftp.ListDirectory; ftpclientRequest.UsePassive = true...

How do you auto-deploy a website during a release build?

I'd like to upload (via ftp) a website when doing a release build in visual studio 2008. I don't want any source code files to be uploaded and it would be nice to configure which folders should get uploaded. I'm using either ASP.NET Web Applications or MVC. How do I configure VS.NET to automatically upload (and overwrite) the last dep...

How do I move files from one machine to another using ASP.NET?

Let's say that I have a site where once the user selects a few options, the following (should) happen: Grabs files (in a directory) off of the local machine - works fine so far Moves them to a remote server - this is where I need help Details: The remote server will be found via UNC path (\servername\xyz) I have access to the usern...

Hooking up GUI interface with asynchronous (s)ftp operation

Trying to implement a progress dialog window for file uploads that look like a cross between IE download dialog and Firefox download dialog with a python GUI library on Windows. What asynchronous (S)FTP libraries are there for python? Ideally I should be able to do file upload resumes and track the progress of each parallel file upload...

Process text files ftp'ed into a set of directories in a hosted server

The situation is as follows: A series of remote workstations collect field data and ftp the collected field data to a server through ftp. The data is sent as a CSV file which is stored in a unique directory for each workstation in the FTP server. Each workstation sends a new update every 10 minutes, causing the previous data to be over...

Advanced Python FTP - can I control how ftplib talks to a server?

I need to send a very specific (non-standard) string to an FTP server: dir "SYS:\IC.ICAMA." The case is critical, as are the style of quotes and their content. Unfortunately, ftplib.dir() seems to use the 'LIST' command rather than 'dir' (and it uses the wrong case for this application). The FTP server is actually a telephone switch...

LuaSocket FTP always times out

I've had success with LuaSocket's TCP facility, but I'm having trouble with its FTP module. I always get a timeout when trying to retrieve a (small) file. I can download the file just fine using Firefox or ftp in passive mode (on Ubuntu Dapper Linux). I thought it might be that I need LuaSocket to use passive FTP, but then I found tha...

size difference between email and ftp text message - EOL characters?

I'm attempting to deliver the same message whether its over FTP or email, but the saved file keeps coming out as different sizes. The textual content of the message is the same, but the nonprintable characters must be accounting for the different size! When transferring the text file over FTP (in Binary mode to prevent FTP translation o...

how to handle 100mb uploads for users.

Hi all, i've been approached to create a bespoke ftp app that users will download in order to be able to upload video files ( up to 100mb). they want it to be idiot proof ( ie easy for non-computer literate people ). I'm assuming that setting up an ftp app like FileZilla with their username and password would be too much of a stretch ...

Web Development Tools Question - Automatic File Upload

Hey StackO's, This should a quick question for some easy rep. I'm doing some PHP Website development, decided to check out and play around with jQuery as well. I don't want to install and manage a local PHP server/service, but I would like a quick one click method for automatically uploading the PHP file I'm working on to my hosting se...

File Transfer Protocol options?

I am looking for a good way to transfer non-trivial (10G > x >10MB) amounts of data from one machine to another, potentially over multiple sessions. I have looked briefly at *ftp (sftp, tftp, ftp) http torrents (out because I will not have a seed network in general) rsync (not sure if I can really adapt this to what I need) Are ther...

Windows FTP Server with XCRC and SSL (Other than CuteFTP SS)

I am currently using CuteFTP Secure Sever 3.3 but it has problems. It seems to muck up connection management, drop connections occasionally and die on large files. I am looking for a replacement that supports XCRC because I use the Synchronize Folders function in the CuteFTP client. I would prefer to detect file similarity by XCRC rat...

Windows FTP client with SOCKS support

Does anybody know of a Windows FTP client with SOCKS support? I need it to build a deployment script... I tried Filezilla but its command-line support seems quite poor, I need something completely non-interactive. ...

Anyone have experience with IPSWITCH's Managed File Transfer Workflow Engine

http://www.ipswitchft.com/products/moveit/central/ We're currently hosting an IPSWITCH managed FTPS site to provide data to customers and vendors. Our usage is limited but will definitely grow over the next year (50 transfers per day -- up and down). We're looking at this additional tool to automate many of our transfers. What's you ...

.Net: FtpWebRequest "(503) Bad sequence of commands" error

On large files (~200+ MB), I get the 503 error when I read the stream. ftp = (FtpWebRequest)WebRequest.Create(new Uri(address.AbsoluteUri + @"/" + file.Name)); ftp.Credentials = new NetworkCredential(username, password); ftp.Method = WebRequestMethods.Ftp.DownloadFile; response = (FtpWebResponse)ftp.GetResponse(); Any clues on what I...

Is is possible to do mget with file patterns to only download certain files?

I know we can do like mget *.xml which will download all xml files. But how is it possible that we using mget with certain file name patterns. can we do something like *SS.xml which mean it will download all files ending with SS.xml? ...