ftp

uploading text file from C# to IBM MVS

Hi All, I'm trying to upload a text file (converted to ebcdic) into a library in MVS using C#. For uploading a file, I used the following string: filename = @"ftp://xx.xx.xx.xx//'myFile'"; It is not possible without the apostrophes. Now, I used @"ftp://xx.xx.xx.xx//'libary_name(myFile)'" for upload into a library but I get incorrect sy...

Outbound FTP request from google appengine using python.

Hi All, I need to make an outbound ftp request to retrieve a number of small files. There are 6 files each less than 10K and I only need to retrieve them once every couple of hours. When I try to do this with urllib2.urlopen("ftp://xxx.xxx.xxx") I get an exception AttributeError: 'module' object has no attribute 'FTP_PORT'. I have r...

Help! PHP attempting FTPS transfer creates empty files.

Hey, all. I'm currently attempting to use PHP to transfer small files between our server and a remote FTPS (FTP over SSL) server. I'm the standard fair to get this done, ie, file_put_contents, file_get_contents, etc... with the following stream context: stream_context_create(array('ftp' => array('overwrite' => true), 'ssl' => array('all...

c# asp.net FTP Error

I get "System.NotSupportedException: The given path's format is not supported. at System.Security.Util.StringExpressionSet" when trying to download an item from an ftp(which have access to). The upload seems to work fine and is done similarly I'll post both functions below: private void Download(string filePath, string fileName) {...

FTP -> VSFTPD -> allow uploading folders

I have a Fedora FTP server that uses VSFTPD. I wanted to know how I could allow the users to upload directories and make directories. Thanks in advance. ...

ASP.NET Unauthorized access when downloading from fTP

My code can be found here http://stackoverflow.com/questions/3604864/c-asp-net-ftp-error I am trying to download a file from an FTP server when I try to download it it says I do not have access I have been googling this all morning and have not had any luck. I went to the designated folder and added Everyone with full permissions hoping...

Automatically generate <img> and then insert it into a <html> page after uploading the im into an FTP folder?!

Hi This is a bit of a shot int he dark, but i dont even know how to google this to get started. It's a very simple idea, but it would be extremely useful to designers and creatives for creating a scrapbook of sorts. Baiscally i want to be able to drop an image I find on the internet onto an FTP folder which will just be a droplet on m...

Linux command to "act" on new files in a specific folder?

I want to be able to ftp a file to a specific folder on a server and have that server run a script when it detects the new file. Any suggestions? I tried some stuff with diff and a cron job every minute, but I couldn't quite get the results I wanted. Any input would be appreciated! ...

FTP: How to check if we have write permission to a directory?

So, how to check if we have write permission to a directory before attempting to write? ...

Visual studio FTP publish does not close connections?

I am publishing using Visual Studio 2010 FTP publish and everything works fine. The problem is that the page I am publishing to does only allow 6 connections from the same IP. As Visual Studio does not close the connection these connections stay open and I exceed the 6 connections quickly and cannot upload. Does anyone know a solution t...

How to upload a file to a server via FTP using R ?

The title says it all. ...

Directory last modified date

Hello, Am wondering when the directory last modified date is changed. I modified a file inside a particular directory (via FTP), but the directory's LMD did not change. How is it suppose to function? Thank you for your time. ...

MVS login using network credential in c#

So I am trying to login to MVS via c# to upload a file. Everything worked fine when the server required the user to enter password once. Now, on another server with the same OS, it asks the user to enter password 2x. Once, then once more if the first one worked. I'm not sure why, but the networkCredentials property is not working i...

Multiple files downloading using FTP crash only on runtime(not debuging)

I think I have some memory issue with a function that should download a file from ftp server. The reason that I think it's a memory thing is because it works fine during debug (maybe it gives the garbage collector more time). Yet I thought that the using should solve this... Just to be clear the function works when called once yet calli...

What is the best web based FTP file manager script?

It should have simple and clean design can log in with real FTP user accounts created in cPanel Installable on different SUB-Domain but must be about to point to ROOT folder on other sub-domain Open Source ...

Is it possible to use C# FTPWebRequest through a FTP proxy?

As I understand it, the FTPWebRequest.Proxy property denotes an HTTP proxy. I have to issue FTP requests to an external server via an FTP proxy. The only way I've got this to work so far is by creating a script which uses the Windows FTP command and downloading that way. Is it possible to use the FTPWebRequest to download files via an ...

How to build a ftp server

Hi I'd like to build an home FTP SERVER - that will store all my files and the rest of my computers will upload and download files to and from it. I don't like to start from scratch, do you know of a c# ftp server implementation? Can you give me some guidelines of where to start what I should know etc? ...

C# ftp download and stream to XML error

I'm trying to get an .xml file that's somewhere on a server loaded into a streamerader to stream it to XML and process it. This is what i get: EndOfStream = 'reader.EndOfStream' threw an exception of type 'System.ObjectDisposedException' I do see that im logged in on the server etc: StatusDescription = "226 Transfer complete.\r\n" It ...

FTP Batch Upload Script

Two questions pertaining to a FTP Batch upload script I'm working on. 1) My log-in script is failing even though I know my credentials are valid. Any suggestions about this code snippet? open ftp.mydomainname.com user (ftp.mydomainname.com:(none)):[email protected] password:mypassword 2) This is just a general questio...

ASP.NET FTP Download

I have a need to push out a file package that includes a driver via my website for download. The only issue is it cannot be transferred in ASCII mode or else it becomes corrupt. I've looked at alternatives for FTP download but would rather not have an application that is created that can be downloaded just to transfer files. I'm looking ...