I\'m 开发者_StackOverflow社区transferring a file using ftp in Delphi. I am able to connect to the ftp account ok but when I try and upload a file the
I\'m working on a website which allows users from different part of world to upload files of size upto 500 MB.
I have a simple problem. My (Delphi 2007 with Indy 9) application connects to an FTP server to retrieve开发者_StackOverflow社区 a list of files. (NLST, not LIST) I then download every file separately
It seems to me from the following page http://www.eclipse.org/eclipse/platfo开发者_如何学编程rm-team/target.php
I am transferring files using FtpWebRequest class in C#; in that class there is a property ftpobject.usePassive = 开发者_高级运维true (or) false;
Before describing my problem, let me go into the configuration. I bought an Android phone and thought that it would be a great idea to access my personal files at home on my Windows 7 Professional 64
I am trying to download a file with PHP from an FTP server which i can access from http too. For example: FTP://username:password@someserver.com/file_name_here.gz. The file is forced as an attachment
How do I check if some DIR exists on the server or not? Although I can check file exists or not through:
I want to overwrite an existing file \"test.txt\" on my ftp server with this code: from ftplib import FTP
I\'ve always thought about creating my own ftp client ever since I\'ve started using the Internet. And now that I\'m studying Python, I\'m thinking about creating one as an exercises/personal project.