ftp

iPhone FTP Connection

I am working on an iPhone app for a client that needs to be able to manipulate directories on an arbitrary FTP server. Does anybody know of any FTP libraries, frameworks, sample code that can remove directories from an FTP server? NOTE: I have thoroughly researched CFFTP and the SimpleFTP Sample code provided by Apple and it only suppo...

Visual Studio 2008 SFTP?

So... we're into the year 2010 now, has anyone found a nice FTP plugin for Visual Studio yet? Something that looks like this perhaps (from EditPlus): I just want to be able to (double-)click a file to open it, and then hit Ctrl+S to save it back to the site. ...

Ftp library on c++ with uploading over HTTP proxy

Is anybody knows the free library for uploading over proxy with Http authentication? Maybe some url on samples how it could be. ...

Best FTP Objective-C wrapper for iPhone

I know you use the C based networking API to do FTP communication but I'd prefer to use something a little higher level. I've seen a few Objective-C based wrappers but I'm not sure what to use. I don't need that complex of FTP interaction. Its just the typical create/delete dirs, upload/download files... What do you recommend? Edit: Her...

FTP List format

Hi, I'm writing an embedded ftp server, and I cannot get the listing format correctly. The server works completely, only programs like FileZilla cannot interpret the listing format. Here's a sample listing: -rwxr--r-- 1 owner group 640 1970 01 01 test -rwxr--r-- 1 owner group 13440 1970 01 01 test.html -rwxr--r-- 1 own...

How to remove svn folders over FTP on Windows hosting

Hi there, I've accidentally copied a large part of a folder tree from my SVN working copy to my shared Windows web host via FTP. The site is now littered with .svn directories and and I need some way of cleaning them. The only access I have to the server is via FTP, or by running a script on the server. Does any one have a script whic...

Client side image resize and ftp component

I am looking for a component that resizes and ftp's images to a website. It doesn't have to be free. In fact, I prefer something we pay for that comes with solid support. It has to be able to transfer multiple images at once too. We work in an ASP.NET MVC environment but the component could be in Flash or Java. ...

Take Current Snapshot of DB and send it to FTP in same PHP Scripts: Advice Needed

Not sure if I can do it this way. I want to get current snapshot of the database and send it via FTP Server, both of this functionality should be implemented in PHP scripts. Here are the steps I am thinking on right now. In my php scripts(basically am extending an PDO into my Dao class and then preparing the query), $qry = SELECT *...

Automatically backing up a file to another server?

I have a backup created of my mysql database (vbulletin forum v3.8) everyday. It's about 360mb in size. It's stored as one text file in a secure folder. I'm thinking of getting another server, through a different host, and somehow automatically transferring the backup to my second server every day. Any ideas on how I could automate th...

how to download file from ftp and upload it again

I need to download file from ftp and make some changing on it and downloading it again to the same ftp using vb.net any help please. thank you. ...

How do I fix: The handshake failed due to an unexpected packet format?

I am connecting from Windows Server 2008 R2 to a Linux FTP Server running vsFTPd 2.0.7. I am connecting via SSL. Here is the line of code it is failing on: sslStream = new SslStream(stream, false, CertificateValidation); Here is the log: 220 (vsFTPd 2.0.7) AUTH SSL 234 Proceed with negotiation. I receive the following error: Syste...

Apache commons-vfs setting FTP/SFTP file permissions/umask

Hi, I'm working with Apache commons-vfs API for writing files to a FTP/SFTP server. ¿There is a way to specify file permissions after upload to the server or the umask for current FTP/SFTP session? ¿Can you show me an example? Thanks in advance ...

Is there a simple way to make lists behave as files (with ftplib)

I'd like to use ftplib to upload program-generated data as lists. The nearest method I can see for doing this is ftp.storlines, but this requires a file object with a readlines() method. Obviously I could create a file, but this seems like overkill as the data isn't persistent. Is there anything that could do this?: session = ftp.new(...

Get modified date via FTP using PHP / CURL

I seem to be running into a documentation drought with CURL vs FTP, can anyone tell me how to get the last modified date of a given file using PHP / CURL. Many thanks! ...

copy files between servers asp.net mvc

Hi, I am using asp.net, c#, MVC and nHibernate and I am trying to upload a file from a local machine to the server and replicate the file to the different server. I was able to upload file to the server and copy the file from one folder to the other folder on the same server without any problem.But how can I copy the file from one serve...

FTP Error: No control connection for command: Permission denied

Hi, I am trying to access a external ftp server through my company's FTP proxy from a bash prompt and I am getting the below issue after I enter the user name 421 Service not available, remote server has closed connection Login failed. No control connection for command: Permission denied The proxy works fine for all other sites but I...

is there a way of listing the contents of the local directory in ftp?

lcd changes local directories. and ls lists files on remote directory. What I would like is lls, to list files on local directory. Is this possible? I know i can always open another terminal to do this, but I'm lazy! ...

FTP file transfer on Windows platform using ANSI C ?

I have a known shared folder on another Windows PC and i have to transfer files using my ANSI C program to that shared folder using an FTP connection. I need some directions - please guide me. ...

can Apache Maven be set to download jar files from an ftp??

i want maven to download custom jar files from an ftp how to set the path? and is there anyway i can combine dependencies or plugins within one element tag.i dont want to write for each dependency r plugin like importing from one external jars folder btw i am using maven plugin for eclipcse ide thanks ...

Determine between files and folders using cURL

I'm writing a script to download files from an FTP server using cURL + PHP, at the moment I am just trying to build a complete file structure, here's the code I'm using so far: <?php $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "ftp://www.example.com"); curl_setopt($curl, CURLOPT_USERPWD, "user:pwd"); curl_setopt...