ftp

Reporting Services 2005 Subscriptions

I am trying to send reports from Reporting Services 2005 by to an FTP location but this does not seem to be an option within the subscription settings. Is this possible to have done? ...

Read header data from files on remote server

Hi! I'm working on a project right now where I need to read header data from files on remote servers. I'm talking about many and large files so I cant read whole files, but just the header data I need. The only solution I have is to mount the remote server with fuse and then read the header from the files as if they where on my local c...

How can I login to an FTP site and remove files that are more than 7 days old?

I need a shell or Perl script which would connect to the FTP server and delete all the files which are more than 7 days old. cheers ...

How do I programmatically create a FTP site in IIS7 on Windows7?

I am looking to do this step: 'Creating a New FTP Site by Editing the IIS 7.0 Configuration Files' with a batch file and was wondering if anybody has done this already? http://learn.iis.net/page.aspx/301/creating-a-new-ftp-site/ ...

windows equivalent of .netrc on unix?

Hi, On unix, we can specify the ftp username/password in ~/.netrc file and next time onwards,there is no need to specify username/password while ftping to any machine provided the credentials for that machine exists in ~/.netrc file. Its very helpful especially if you need to login to multiple machines may times lets say for monitoring...

Partial Upload With storbinary in python

I've written some python code to download an image using urllib.urlopen().read() and then upload it to an FTP site using ftplib.FTP().storbinary() but I'm having a problem. Sometimes the image file is only partially uploaded, so I get images with the bottom 20% or so cut off. I've checked the locally downloaded version and I have...

How do I get the results from an FTP command run through FtpCommand?

I've wrapped most of wininet with no problems, but now I'm stuck. I am trying to p/invoke FtpCommand from wininet.dll, but every command I run returns "500 syntax error". Even simple commands like dir, or ls. If I connect to the same server with ftp.exe the commands work fine and return expected results. Here's the method definition: [...

Passive FTP instead of Active FTP

Hi I have a client you cannot use Active FTP connections because they are limited by the interface applications. The issue i have is I have Active set up fine but cannot fathom why my passive FTP will only times out. I have followed this article http://learn.iis.net/page.aspx/309/configuring-ftp-firewall-settings/ and still have no j...

Error while closing ftp stream in C#

Dear all I'm trying to cancel a downloading operation. My scenario is as follows: When the user clicks on Cancel Download Button so this action throws exception in Download function which is as follows: try { reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + uri + "/" + fileName)); ...

Uploading a file to an FTP Server without storing it on an filesystem using PHP

Hi, I have been unsuccesfully attempting to upload an encrypted file to an FTP server, without writing it to the filesystem first (which has security implications) I have been attempting to use proc_open and then ftp_fput but to no avail, I guess because the stream created in proc_open isn't fstatable Here is the code <?php $ciphert...

What happens to a file when the connection through SFTP is interrupted?

I need to implement a file transferring from a web server to a SFTP server. When the connection is interrupted during the file transferring, what happens to the bytes already transferred? ...

How to synchronise FTP directory from command line?

I have a website with PHP files and other. I would like to do one-click synchronisation between my local copy of a website and my website on the server. It would be nice if there was be a command line utility or plugin to Eclipse PDT to do this. ...

Any OSS .Net FTP (client) with TLS and SSL?

Does anyone know of an open source library that does ftp-client with TLS and SSL for dotNET? We are using a commercial library now but we are not very happy with it, so we are thinking of switching. So instead of rolling our own, are there any lgpl (or equivalent) librarys out there? Or - If we have to roll our own (it will be a LGPL ...

How to add secure FTP capabilities to a .NET application

I'm rewriting an in-house client-server application as a .NET MVC application. It needs to send and receive files via secure FTP. The original application was client-server and used MOVEit Freely to do SFTP. Is there a library or product I can use to do it from within .NET? ...

remote ftp account but with the my normal domain name

I want to have an ftp account [email protected] that does not access my normal mydomain.com server but accesses any other remote server from some service provider. How do i do this with still keeping mydomain in the address? Which service providers would just give me an ftp account without moving my domian there? Do i need to in...

How to control the file permissions when the netbeans php plugin uploads a file with FTP.

Whenever netbeans preforms an ftp upload the files are uploaded with the permissions set to 640. This causes PHP to throw the following error: Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0 Fatal error: Unknown: Failed opening required '/Library/WebServer/Documents/notes/index.php' (include_path='.:/usr...

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 experiences in terms of performance, reliability, file size limitations etc.) ...

Implementing MODE Z Compression for FTP using C#

I am trying to implement MODE Z compression for FTP using C# for an FTP client that I have written. My understanding is that MODE Z uses the same compression as zlib. I cannot get zlib.net from componentace to work. It hacks off the last part of the file after the upload to a FileZilla FTP Server. Where are the specs for MODE Z? Has...

SFTP from within PHP

Hi guys, I'm in the process of building an web app that will, besides other things, need to connect to a FTP server to download or upload files. The application is written in PHP and it's hosted on a Linux server. What I was wondering is whether or not it would be possible to also provide support for SFTP servers, but after some quick ...

scriptable FTP client

I need to have a script download all file in a given directory. I only have ftp access. A quick test shows that I can't talk my ftp client into logging in from the command line. Even after trying Arnshea's answer it refuses to read the password from the file or stdin. Even after logging in I can't download wild cards. (fixed with mget,...