ftp

Searching all files for regex matching files on FTP server in C#.NET

I'm creating a program where I need to search an FTP server and download all files which match a given regex. How do I do this? I can connect to the FTP server, but how do I scan all files in the given path for files matching the regex? I also need to do the same for HTTP servers which I think will be fundamentally more difficult, but I...

Wput - Upload Folder

Hi, I've been searching and trying for days to get wput.exe to upload an entire folder, along with its subfolders. I've been told that Wput can do this. I've tried the following: wput C:\upload\ ftp://user:[email protected]/Transfer/ Any ideas? ...

What serial file transfer protocol to use?

I'm looking for some input on witch file transfer protocol to use over a serial line. I want to be able to transfer files of max 200 Mb size over a serial line (RS232) in both directions, but only one of the machines needs to be able to initiate the get/put (think master-slave). The protocol also needs to be: Easy/simple to implement sin...

Java Secure FTP Applet

Does everyone know if there's an example of code of an application similar to these one? http://www.jscape.com/sftpapplet/sftp_applet_demo.html It's an applet that allows to upload huge files into an FTP Active server via HTTP using a Java Applet. ...

PHP: display most recent images from directory?

I have a camera server FTPing images to a webserver. Can anyone suggest the PHP snippet I'd need that would look through the server's public root directory (/public_html) and display the four most recent images? I can tell the camera server to name uploaded images by date/time, however needed [eg. image-021020102355.jpg for an image cre...

How to play video from ftp streaming file ?

Hello, If found many tips about how to stream from classic url link, but nothing about ftp. Is it the same way to proced ? Thanks you. AL. ...

CMD Prompt > FTP Size Command

I'm developing a PHP App on IIS 7.5, which uses PHP FTP commands. These all work, apart from ftp_size(). I've tested: cmd.exe > ftp host > username > password > SIZE filename = Invalid Command However, if I access the FTP site through an Internet Browser, the filesize is displayed. Do I need to install FTP Extensions, and if so, whi...

FTP:FTPGetFile Error 87 : The Parameter is incorrect

hi , I have implemented FTP, for downloading i am using FTPGetFile but is throwing error "Error 87 : The Parameter is incorrect" My code looks like : int CFtpClient::GetFile(char* szRemoteFile, char* szLocalFile,int iType, DWORD& dwLastError ) { dwLastError = 0; if (m_bActiveSession) { if (!FtpGetFile (m_hConnec...

Trigger for FTP files

Hi, At this moment I have an application that processes a file. My workflow is: Someone puts a file in a FTP and notifies me I download the file and run my app with that file. It returns a proccessed file. I put the result in the FTP again and notify my workmate. Is there any kind of trigger that executes my code when someone drops ...

Best method to upload big files (successfully) in low bandwidth scenario?

Hi, My work involves uploading archived files (10-25mb) onto a FTP server (using cuteFTP) on daily basis. Problem is that uploading is done from remote villages where USB datacards give very poor bandwidth. As a result, several files that are uploaded get corrupted. Two questions: Is there any way to upload the files more effectivel...

Access files using QFtp on a TLS service

I am writting a client using Qt and the QFtp class to retrieve files from an FTP service. The FTP service requires the use of a TLS connection. Where can I set the QFtp object to use TLS? I've already attempted to use the direct raw command retrieved from an FTP client. ...

Accessing an FTP connection for downloading files

i am new to iphone.. i want guidelines for accessing ftp server through objective c ,where ftp url, username,password should be given in program itself , i want to access a lot of image files from the ftp and display it in my imageview. how to store those image files in locally and retrieve whenever needed.... thanks in advance.. ...

C# Process - Pause or sleep before completion

I have a Process: Process pr = new Process(); pr.StartInfo.FileName = @"wput.exe"; pr.StartInfo.Arguments = @"C:\Downloads\ ftp://user:[email protected]/Transfer/Updates/"; pr.StartInfo.RedirectStandardOutput = true; pr.StartInfo.UseShellExecute = false; pr.StartInfo. pr.Start(); string output = pr.StandardOutput.ReadToEnd(); Console...

iOS: FTP TLS Connection

I need a FTP TLS Connection for my iPhone-App. A normal FTP-Connection works fine. But I need also a secure TLS connection. I used the code from Apple´s SimpleFTPSample for the iPhone: ftpStream = CFReadStreamCreateWithFTPURL(NULL, (CFURLRef) url); self.networkStream = (NSInputStream *) ftpStream; [self.networkStream retain]; self.netw...

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 performance which for me was over 125 times the speed of FTP. It uses Udp for the data channel or a protocol they call "Pdp". Are there any free ...

FTP Connection string using expression in SSIS

Hi, In my SSIS 2005 package, I need to give the FTP Connectionstring via an expression as I need to keep it configurable for the user from the dtsConfig file. At the moment I tried giving the following expression: Connectionstring = @[User::FTPServer] + "." + @[User::FTPUser] + "." + @[User::FTPPass] For this unique syntax, I took poi...

Continue flow on certain specific Error in SSIS

Hi, In SSIS 2005, I am using the FTP Task. I have a flow where when the package runs, it retrieves any files in a specific folder from FTP to a local folder. Remote folder path is set by variable such as /root/abc/*abc.txt The task works fine if there are files in that folder matching this criteria. If there are no files, the task fail...

how to preserve file modification time with LFTP

Hi, I wrote a script that sync several servers at once. One of my problem is that I cannot get LFTP to preserve initial file modification time. So basically, it always upload all the files while only some changed. Do you know how to force LFTP to preserve file modification time when downloading or uploading? Thanks for any help. Korc...

ftp process is not working properly

I have a ssis package that does the following copies a file from an ftp to a folder. overwrite if it exists copy data to sql db delete file from ftp i have send email task if the ftp fails. Scheduled this ssis in jobs. I created a 2MB test file and ran the job. Works perfect! now tried with a 500 MB file in the ftp. Works pefect w...

Progress Bar for ftp downloading.

Hello, Is there anyway to display a progress while downloading a file from ftp in order to show the download progress status ? Thank you. ...