Skip to main content

All Questions

Tagged with
0 votes
1 answer
3k views

File size detection before downloading from an ftp server? C# error

I have a C# homework, to create a download manager to download a file from an ftp server, with these conditions: Selection of an audio file on a server. Detection of file size. Asynchronous ...
John Keane's user avatar
2 votes
1 answer
4k views

How to Download file from one FTP and then Upload file to different FTP?

I am trying to download a file from one FTP server, and then upload it to a different FTP. I only figured out how to upload local files and download XML via FTP so far. Here is my method to upload ...
adarom1987's user avatar
1 vote
2 answers
2k views

Not able to upload/download files via FTP script

I have the following batch file which creates a FTP script to upload/download files from the server. However I am running this with admin rights but the script is only uploading one file and ...
user avatar
0 votes
1 answer
3k views

How to read FTP log

If I look at the FTP access log from Apache, how do I know which files are uploaded or downloaded? For example: here are two typical lines: Mon May 18 10:09:57 2015 1 166.166.30.166 168166 /home/...
user5248's user avatar
  • 347
2 votes
1 answer
19k views

C# FTP Upload and Download [closed]

Is there any refernece to C# that I'm able to upload some files from my computer (where program is running) to my FTP that is somwere else and again to download that files to my other computer (on ...
user2836291's user avatar
7 votes
3 answers
39k views

Upload file and download file from FTP

I am trying to make a program that uploads/downloads .exe file to a FTP I tried using FtpWebRequest, but I only succeed to upload and download .txt files. Then i found here a solution for ...
Spreadzz's user avatar
  • 299
0 votes
1 answer
3k views

Upload/Download files from iPhone over FTP protocol

I am trying to upload/download files between my iPhone and FTP server over FTP protocol (some of them are large), but I have no idea how to do this. Is there any way can do this? Does ASIHttpRequest ...
traximus's user avatar
  • 177
0 votes
1 answer
1k views

How to Upload and download files to mainframe in .NET without using third party utility or tool?

I use a third party utility for mainframe FTP (like downloading and uploading files) in .NET. Is there a way to do it without any separate utility?
Amit Panwar's user avatar
7 votes
1 answer
9k views

Which protocol (FTP or HTTP) is better for download/upload small or large files?

I was looking at different websites where download options are available, and always find different way to download same file. Over FTP or HTTP. I was wondering which one is better and should ...
Swapnil Tailor's user avatar
1 vote
1 answer
4k views

Why do we need generate a temporary file when remote uploading to FTP?

I am so confused with this, I am trying to upload data to FTP through VBS script and it works fine for a single file file but doesn't upload multiple files when I add the script inside a loop. Also , ...
Sufiyan Ghori's user avatar
192 votes
5 answers
480k views

Is there a Public FTP server to test upload and download? [closed]

What I want to do is measure broadband speed using c#. To do this, I use NetworkInterface.BytesReceived and BytesSent to get the current amount of bytes sent and received from my network adapter and ...
Jay's user avatar
  • 2,265
38 votes
4 answers
100k views

How do you upload a file to an FTP server?

I created a function to download files from an FTP server that I have access to. How would I upload files back to the FTP server? Below is the download_files method i used: public static void ...
Mike's user avatar
  • 2,299
0 votes
1 answer
1k views

FTP Downloading a file while its upload is in progress

I have a windows service (VB.NET) which downloads files from a server after a specific interval. What happens if it try to download a file when its upload is in progress? If it creates some problem, ...
Saim's user avatar
  • 2,503
0 votes
1 answer
365 views

How do I make php handle file downloads of incomplete file?

So for example, I have a file being uploaded through ftp and file size changes. I do know the file size beforehand. So how would I make php to send it to clients browsers even if file is not finished ...
user avatar
0 votes
2 answers
2k views

Block file during uploading on FTP

I have two services client and server. Client upload file on some ftp and server download it. So there can occur situation when client do not finish upload file and server already start download this ...
user avatar