Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
12answers
8k views

How to improve the Performance of FtpWebRequest?

I have an application written in .NET 3.5 that uses FTP to upload/download files from a server. The app works fine but there are performance issues: It takes a lot of time to make connection to the ...
7
votes
5answers
3k views

How to detect working internet connection in C#?

I have a C# code that basically uploads a file via FTP protocol (using FtpWebRequest). I'd like, however, to first determine whether there is a working internet connection before trying to upload the ...
6
votes
8answers
718 views

How To Do a Server To Server File Transfer without any user interaction?

In my scenario, users are able to upload zip files to a.example.com I would love to create a "daemon" which in specified time intervals will move-transfer any zip files uploaded by the users from ...
5
votes
1answer
950 views

Downloading files from multiple directory in one FTP Connection with FTPWebRequest in .NET

Is it possible to change the Path of the FTP session once the Session is Open. The reason I want to do this is to avoid to open the multiple FTP connection. The whole purpose is to download the files ...
4
votes
1answer
153 views

Documentation for Finer Points of FtpWebRequest

I'm creating a general-purpose FTP class for .NET. I seem to have things working nicely but there are a few details I'm a little unsure about. And documentation such as that on MSDN provides ...
4
votes
6answers
3k views

How can I use FTP to move files between directories?

I have a program that needs to move a file from one directory to another on an FTP server. For example, the file is in: ftp://1.1.1.1/MAIN/Dir1 and I need to move the file to: ...
4
votes
3answers
203 views

.NET FtpWebRequest: How to check if file is ready to download

I have a service .NET using the FtpWebRequest to download images from an FTP server. I have a camera which stores images on the same FTP server. If my service see an image and tries to download it ...
4
votes
7answers
7k views

C# How to check if an FTP Directory Exists

Looking for the best way to check for a given directory via FTP. currently i have the following code: private bool FtpDirectoryExists(string directory, string username, string password) { try ...
4
votes
4answers
1k views

Upload Multiple FTP Files

Requirement, upload 1500 jpg images every night, the below code opens and closes a connection many times, I'm wondering if there is a better way. ...this is a code snippet, so there are variables ...
4
votes
2answers
1k views

FTP upload using .NET

I am writing a code to upload a zip file to an ftp server. Surprisingly the code works fine for small files, but with bigger files I end up in problem. I am using Stream object and I have noted that ...
4
votes
1answer
579 views

.Net FtpWebRequest fails sometimes

I try to list file details using FtpWebRequest but very frequently it fails with a WebException and shows error 530 User not logged in. How is this possible, that it works some of the time using the ...
3
votes
3answers
4k views

FtpWebRequest Download File

The following code is intended to retrieve a file via FTP. However, I'm getting an error with it. serverPath = "ftp://x.x.x.x/tmp/myfile.txt"; FtpWebRequest request = ...
3
votes
2answers
595 views

FTPWebRequest Upload files will only upload two files!

Hi I'm using the aynchronous members of the WebRequest to upload files to an IIS ftp server. I can upload two files with success. However BeginGetResponse on the third file never calls my call back ...
3
votes
2answers
6k views

Set Port number when using FtpWebRequest in C#

I keep getting a exception when I try to FTP to my Win 2008 Server from C# code using VS2008 as debugger. My test class looks like this: public class FTP { private string ftpServerIP = ...
2
votes
1answer
29 views

Can i get DirectoryInfo from FTP Server without FtpWebRequest

I was answering a Question about how to show a directory structure on FTP Server, therefor it was needed to use System.IO.DirectoryInfo[]. Is there any easier way to get DirectoryInfo[] from ftp ...
2
votes
1answer
65 views

FTPWebRequest & AS/400 - Setting NAMEFMT to 1

I'm trying to connect to a FTP AS/400 server using .NET, with a url like this: ftp://server.com/folder/file.csv I'm getting a 501 error in return, and according to this question it's due to the ...
2
votes
1answer
74 views

C# - Multiple methods with FtpWebRequest?

I'm working on a program where I am uploading multiple files to an FTP. I need to complete 8 actions in doing this: Create a new folder within the FTP Upload three files to the new directory Create ...
2
votes
1answer
189 views

c# ftp upload to Linux

Im trying to check if a directory exists on an FTP server. Before you say "use ListDirectory" or "use PrintWorkingDirectory", they dont always work; for example, I tested if ftp://webserver/Logs ...
2
votes
1answer
151 views

How to Reuse FtpWebRequest Connection

I need to list thousands of files on FTP server, and delete the necessary ones. As you can guess, performance is essential, so I need a way to reuse the FTP connection. There is not enough ...
2
votes
1answer
2k views

Using FTP to download each file *WHILE* getting the file list

We need to get about 100 very small files from a remote FTP server using vb.net. Our company won't let us buy (or install) any 3rd party ftp libraries... so we are forced to use something like ...
2
votes
1answer
501 views

Is it possible to do “Active” mode FTP using FtpWebRequest?

Due to some firewall issues, we need to do FTP using "active" mode (i.e. not by initiating a PASV command). Currently, we're using code along the lines of: // Get the object used to communicate with ...
2
votes
2answers
550 views

ThreadPool with multiple threads creating FTP requests times out

I'm trying to create a collection of FTP web requests to download a collection of files. Was working correctly doing this in a single thread but am trying to do with multiple threads now but am ...
2
votes
2answers
511 views

Uploading folder to ftp subfolder returns error (550) file unavailable, no access

I am trying to upload images to the ftp. I need to have it in a compressed folder called by a specific name and then upload that folder to a specific directory. Each time I try, I get an error The ...
2
votes
1answer
515 views

Creating directory in FTP

i am using the following piece of code to create a directory. The problem is that i do not get an error, but i do not also find the directory i justt created. So, what am i doing wrong here? Should i ...
2
votes
1answer
778 views

How to check FtpWebRequest for errors

If I use System.Net.FtpWebRequest to upload a file to a vsftpd server, do I need to use GetResponse to check if the file was uploaded correctly? Or do I get an exception for every error? What in ...
2
votes
1answer
2k views

FtpWebRequest with EnableSSL

I implemented my custom FTP class to work with a hosted server that I'm paying for. I use the FTP for backup, restore and update of my application. I'm now at the moment where I want to enable the ...
2
votes
1answer
464 views

FtpWebRequest says Stream is Disposed

I was wondering if anyone knows the answer to why my code casts an exeption when I do the fileStream.Read call, with the message "The stream is disposed" I can list the files in the folder and using ...
2
votes
2answers
434 views

OPTS command on FtpWebRequest/FtpWebResponse

I'm using the FtpWebRequest and FtpWebResponse objects in the System.Net namespace to issue a LIST command. The problem I'm having is that the FTP server I'm connecting to does not have the OPTS ...
2
votes
2answers
5k views

C# BinaryReader “stream does not support seek operations”

I am trying to download files from an ftp server using C# and ftpwebrequest. I can get the bytes using BinaryReader, but when I try to read the stream using br.ReadBytes(int), I get an error that ...
2
votes
1answer
921 views

Godaddy WebPermission Issue on FTPwebrequest

I have created FTPwebRequest to write a file from one of my Windows 2003 share hosting account to one of my Linux hosting account. This is the code, I use to upload the file between servers (domains) ...
2
votes
4answers
1k views

Why doesn't FTPWebRequest, or WebRequest in general accept a /../ path?

I am trying to automate some upload/download tasks from an ftp web server. When I connect to the server through client, or through Firefox even, in order to get to my directory, I have to specify a ...
2
votes
2answers
2k views

How do you change directories using FtpWebRequest (.NET)?

Can someone tell me how to change directories using FtpWebRequest? This seems like it should be an easy thing to do, but I'm not seeing it. EDIT I just want to add...I don't have my heart set on ...
1
vote
1answer
39 views

Downloading a file from an ftp server to the browser

I am creating a ASP.NET (VB.NET) application that must retrieve a known remote file and return it to the visitor through their browser. I am attempting to use the sample from Microsoft located here: ...
1
vote
2answers
83 views

C# ASPX FTP Filesize wrong after upload

I am uploading a file through FTP that is 613.6 kb, it is a PDF file. When it arrives on the server it is now 82 KB. in my Web.Config I have <httpRuntime executionTimeout="7200" ...
1
vote
3answers
83 views

Progress getting incorrect value from backgroundworker

I'm new in c# and i'm still working way through and learning it all. I have made this code for a progress bar when downloading a file from ftp, and it actually working just fine. But progress value ...
1
vote
2answers
92 views

Windows Azure - Load Data via FTP in ASP.NET App

I am trying to store data local on windows azure, which I downloaded before via FTP. I download the file like this (works on my local machine): string[] files = ...
1
vote
2answers
533 views

C# class to parse WebRequestMethods.Ftp.ListDirectoryDetails FTP response

I'm creating a service to monitor FTP locations for new updates and require the ability to parse the response returned from a FtpWebRequest response using the ...
1
vote
1answer
179 views

ASP.NET Unable to Enable SSL using FtpWebRequest class without getting errors

I am retrieving a file from our FTP server which is then put into memory and passed to the client via HTTPS. I have everything working flawlessly. However, if I turn on SSL, I get the following error: ...
1
vote
1answer
65 views

How to upload a file in a non-default directory using FTPWEBREQUEST?

I face an issue while I try to upload a file in a non-default directory of the server. When I use "ftp://server01/autofile/test.zip", the file gets uploaded without any issues since autofile is the ...
1
vote
2answers
95 views

FtpWebRequest Upload out-of-memory

I'm using the example here: http://msdn.microsoft.com/en-us/library/ms229715.aspx to upload a large 1GB file to an FTP server. However it chokes on the line: byte[] fileContents = ...
1
vote
1answer
267 views

Ftp Upload of Large File causes VB.Net App to Hang on Stream.Close()

I'm trying to upload a large file (over 50Mb) to my webserver but my app hangs when trying to close the stream. If the file uploaded is larger than 50Mb then the .Close() causes it to hang - no error ...
1
vote
0answers
200 views

FTPWebRequest .NET 3.5 vs 4

I have an application that does an FTP connection to an IBM mainframe and all has been working fine. I then recompiled against .NET 4 and the mainframe no longer accepts the file giving me an error ...
1
vote
1answer
152 views

Different behaviour when streaming and saving file from ftp server using FtpWebRequest on production machine ASP.Net

There might be some very simple answer to this, but i am really stuck on this one. I have written some code that fetches quite a large (4GB+) xml file through ftp, reads it as a string and splits the ...
1
vote
1answer
474 views

ftp upload of multiple large files into one file

I am trying to upload 2 large files to a ftp server by uploading as one file to a location. I have it working if the files are small but it crashes with large files. For i As Integer = 0 To ...
1
vote
3answers
1k views

Displaying progress while uploading data

I am using the following code located here to upload files Public Function UploadFile(ByVal oFile As FileInfo) As Boolean Dim ftpRequest As FtpWebRequest Dim ftpResponse As FtpWebResponse Try ...
1
vote
3answers
2k views

Retrieving creation date of file (FTP)

I'm using the System.Net.FtpWebRequest class and my code is as follows: FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://example.com/folder"); request.Method = ...
1
vote
1answer
891 views

How to upload a file (using FTP) to a password protected folder in C#?

I have password-protected a folder on my web server using CPanel (HTTP?). I am trying to upload a file via FTP in C#, but I keep getting this error: The remote server returned an error: (553) File ...
1
vote
1answer
794 views

Setting port in FtpWebRequest

I need the user to be able to be able to modify the port for downloading FTP information - but I can't find a way of changing this in FtpWebRequest.
1
vote
1answer
189 views

Why does FileStream feed FtpWebRequest but not MemoryStream?

I'm using the msdn example here: http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx I changed the FileStream to a MemoryStream and it doesn't read the bytes when I change it back ...
1
vote
1answer
893 views

How to do multiple Upload/Download in FTP using C#

How to do multiple Upload/Download in FTP using C# without using FtpWebRequest ? I have an idea it can be achieved using threads, but i am not able to begin. If any body has some code snippet for ...

1 2 3