a .NET Framework class, implementing a File Transfer Protocol (FTP) client.
0
votes
0answers
11 views
Uploading file to FTP with VB.NET
I'm getting errors when trying to upload a file to FTP Server with the next VB.NET code:
Dim miUri As String = "ftp://ftp.mydomain.com/folder/file.jpg"
Dim miRequest As Net.FtpWebRequest = ...
0
votes
0answers
24 views
check file on ftp server
I have found many posts on checking if the file on the ftp server exists. None of the codes provided helped. I am trying to auto upload small files to the ftp server BUT I don't want to override the ...
0
votes
0answers
21 views
Delete folder on ftp
Hi I want to delete a folder on my ftp
I tried this:
WebRequest request = WebRequest.Create(strPath);
request.Method = WebRequestMethods.Ftp.RemoveDirectory;
request.Credentials = ...
0
votes
1answer
16 views
File upload app is stuck
If I run my program and strUploadIP doens't exits in my network my whole application is stuck
FileInfo toUpload = new FileInfo(strFile);
FtpWebRequest req = ...
0
votes
0answers
34 views
Partial ListDirectoryDetails using FtpWebRequest
I built a web app that uses FtpWebRequest and on directories that are very large it takes a long time, I am trying to get the ListDirectoryDetails. I wanted to see how best to setup using say top 100 ...
0
votes
1answer
22 views
How to change an FTP host user/password with FtpWebRequest?
Is this possible? Or what is the best way to do so in a .NET application?
0
votes
0answers
31 views
How Can I Save Image File To Another Host With FTP
I get my image file like this;
var image = WebImage.GetImageFromRequest();
Than I save my image file to my local like this;
image.Save(Path.Combine("~/Images", NewFileName), "jpg");
But I want ...
0
votes
1answer
35 views
Get FTP directory content issue if it's empty
I have code what gets a content of some FTP directory. At some servers I've tested it works fine.
But at one server this method throws an exception when we try to get response.
public static ...
0
votes
3answers
46 views
System.OutOfMemoryException: FTP Upload
I am attempting to load files up to an FTP server. Here is my code:
// Create the request.
FtpWebRequest request = ...
0
votes
0answers
52 views
Attempting to upload to FTP: System.Net.WebException: System error
I have an API that takes in XML and ultimately uploads files based on information in the XML. The uploads are on a schedule (also from XML), and I have tested everything surrounding it and know it ...
0
votes
1answer
84 views
reading files in subfolders in directory c# streamreader
I need to find all files and all subfolders in a directory. I am omitting the FtpWebRequest. Here is what I have written so far:
private string[] fileList () {
StringBuilder result = new ...
1
vote
0answers
74 views
FTPWebRequest in Batch
I made a batch class to check an FTP for files, download them and delete them on the FTP.
When I run it manually (not in batch) it works perfectly and downloads all files in the FTP and deletes them ...
0
votes
0answers
64 views
UnauthorizedAccessException
I am working with the tutorial here: http://www.devtoolshed.com/content/c-download-file-progress-bar and I am receiving an UnauthorizedAccessException on the following line of code
using (Stream ...
0
votes
0answers
66 views
C# FtpWebRequest in threads very slow
I have the following piece of code: Its working, but seems like every FtpWebRequest is making a connection to the ftp server, thus taking a lot of time for each file to download (800Kb file ...
1
vote
1answer
70 views
FTP upload gives time out, but does upload the file
I'm trying to figure out this element, I have made an ftp module with several actions which all work perfectly, except for the upload method. In fact it does work, but it still returns an error.
So I ...
-2
votes
1answer
115 views
C# FtpWebRequest asynchronous download
Im saw many samples of how to upload asynchronously, but not too much information on how to download from a FTP server asynchonously.
Can someone provide a small sample in c# that uses FtpWebRequest ...
0
votes
2answers
66 views
After some connection I have a 'not logged in' issue
In my Web application I need to set path to two FTP folders and in model validation I try to check if these folders exists on the FTP server.
My problem is that first time this usually works and the ...
3
votes
1answer
82 views
How can I use C# to upload a dataset to our Mainframe and specify LOCSITE, BLOCKSIZE, and RECFM?
I found the MSDN article on how to upload files via FTP here:
How to: Upload Files with FTP
However I am not sure that I can achieve my goals by using this method. I want basically specify the block ...
1
vote
2answers
151 views
How to extract zip file which exist on ftp server using C#
I am using ftplib for uploading files on ftp server using following code
FtpConnection ftp = new FtpConnection(serverip, ftpuser, ftppassword);
ftp.Open();
ftp.Login();
...
0
votes
1answer
92 views
c# FTP File Download Times out
I am downloading a file from my FTP Server. When it gets to the last bytes it freezes and times out. I had to set the timeout to -1 so it won't time out but the last bytes never finish.
Any ideas?
...
0
votes
0answers
11 views
FtpWebRequest ListDirectory truncated at 10,000 files [duplicate]
I am trying to get an FTP directory listing. I have more than 10,000 files in my folder and it seems that the list I get back is truncated at 10,000 files. Is there anything I can do so that I can get ...
0
votes
0answers
44 views
FTP timeout on active connection mode in a WCF service hosted as windows service
I have written a TaskServer WCF service that loads a FTP file sync plugin and executes file synchronization of local and server files in an extra thread by using FTPclient. In the source of FTPclient ...
-2
votes
2answers
187 views
How do i Download FTP root folder with its subfolder and files in C# using FTPwebRequest [duplicate]
I want to download A ftp directory which has its sub directories and files, I am using C# Ftpwebrequst.
0
votes
0answers
103 views
C# connect to active FTP server from an Azure virtual machine
I need to connect to an active FTP server from a virtual machine inside azure using C# code.
The server I'm connecting to supports only ACTIVE FTP mode. Here is sample code for connecting to GNU ...
1
vote
1answer
238 views
Uploading a file via FtpWebRequest The remote server returned an error 227 entering passive mode
I'm reading data from my database and reformatting it into a comma delimited CSV file which I need to upload to an FTP server.
This procedure reads in the Byte array of the string that contains the ...
5
votes
2answers
224 views
Special characters in FTP files
I am facing problems to manage files in a FTP when they have special characters. For example filenames with ó or similars.
I give you an example. First I want to list and process each file of a ...
0
votes
0answers
122 views
Error while moving files on a remote FTP
I have built an Console Application that reads and move files from a remote FTP.
Everything has gone smoothly until I deployed the code to the production environment.
The first thing I ask for when ...
0
votes
0answers
22 views
ftpwebrequest.getresponse invalidoperationexception
I'm tryng to test a connection to FTP and I get InvalidOperationException
username, address and password are correct
my code is
connected = false;
FtpWebRequest request = ...
0
votes
1answer
93 views
How do I use a Progress Bar with FtpWebRequest class?
I was trying to do this on my own but have run into a situation where I need some help. I would like to use a progressbar control to show the current progress of an FTP file upload.
Currently, I ...
0
votes
0answers
97 views
Can I validate a server certificate ftps with ftpWebRequest, sending the fingerprint how parameters?
I have a server certificate ftps. I’m developing an c# client application to connect this ftps. Is it possible to validate, this certificate with ftpWebRequest NOT ignoring it as it is showed in this ...
1
vote
0answers
40 views
Russian characters are destroyed after my ftp upload
the context is as follow: I recive xml files with russian text, my FileSystemWacher on Create event transfer them to an internal ftp server like this:
public static FtpWebResponse UploadFile(string ...
0
votes
0answers
97 views
FTP connection via IPAddress
I'm trying to open an FTP connection having as parameter the IPAddress and not the url.
here is my code:
the address I'm using is valid and in IExplorer I can access the ftp server, while with my ...
0
votes
0answers
148 views
ASP.NET 4.5 ZipFile class how to download and open zip from FTP
My overall goal is to grab a zip file from my ftp, open it on the fly, read the content for a specific field in the excel file (there will only ever be one file in any zip).
So far I have been ...
0
votes
0answers
136 views
FTPWebRequest 530 Error: Not Logged in issue
I have been digging through a mountain of posts on how to properly login to FTP in C# but when I actually try, it does not work. Through my readings I have come to think that it is because my username ...
0
votes
2answers
295 views
Uploading a xml file to ftp server in C#, file has been successfully uploaded but there is no contents in it?
My problem is that when I view the uploaded file on my ftp server, there is no contents on it, it is empty. Why is this happening am I missing something in my code?
if (File.Exists("main.xml"))
{
...
0
votes
1answer
73 views
xmltextwrite save file - specify hostname or servername
I am trying to save XML file on a server and send it to another remote over FTP. To create/save XML file, I am using
XmlWriter writer = XmlWriter.Create("d:\\path\\to\\folder\\filename.xml");
and ...
1
vote
0answers
562 views
FtpWebRequest WebException: “Unable to connect to the remote server”
I have code in a Windows Service that successfully connects to an FTP server when I run it locally through a test harness (with the FTP server being on another machine on the local network).
When I ...
0
votes
1answer
159 views
WebClient and FtpWebRequest Both Hanging (Timeout)
I'm trying to download a file from a FTP site that uses Passive Mode. I've tried both the FtpWebRequest methods and the WebClient.DownloadFile and DownloadFileAsync methods.
Most recently, my code ...
0
votes
0answers
278 views
FTP file upload over SSL c#
Topic: FTP file transfer over SSL
im trying to upload file to one of the ftp servers I have
but im getting exception while reaching the server
server listening on port 990
i think the problem is with ...
4
votes
1answer
356 views
Check if directory exists on FTP server
I'm running a check to see if a directory exists on my FTP server:
public bool DirectoryExists(string directory)
{
bool directoryExists;
var request = ...
-1
votes
1answer
91 views
FtpClient and FtpWebRequest — what's the difference?
I have used the FtpClient to connect to the FTP Server,Upload a file and download a file from the FTP server.
I found FtpWebRequest which does the same functionality as of FtpClient.
Could anyone ...
1
vote
2answers
185 views
Ftp uploaded files are corrupted unless “txt” files c#
I'm using an FTP server in c# and I have to upload files of different typer (.png, .xlsx, docx....), at the moment the upload is done for every file type, but if I try to open a file (except for .txt) ...
0
votes
0answers
33 views
implementing files from files server in application server
I have one main application server wich is public and freely used, so till now
I was afraid giving the users the option to upload their documents like pdf, doc and images.
But now i have to face it ...
1
vote
1answer
374 views
asp.net image source from ftp address
Using C# ASP.Net and visual Studio 2012 ultimate.
I've re-used some code from my form. to download an image from an ftp server.
public class FTPdownloader
{
public Image Download(string ...
0
votes
0answers
63 views
Too many connections when downloading files using FtpWebRequest?, help me
I use FtpWebRequest to download multiple files from the server.but when use reqFTP.Credentials to send request, it creates too many connections.how to open a connection and file down a lot, this is my ...
1
vote
2answers
346 views
create a directory with subdirectories in a single ftp request?
I got a small problem on how to create a directory with subdirectories in a single ftp request
I have a string s
string s = "a/b/c/d"
NOTE : The words between slashes are random and the ...
0
votes
2answers
730 views
FtpWebResponse GetResponse() gives “The remote server returned an error: (550) File unavailable (e.g., file not found, no access).”
I have a Win Form with a picture gallery that uses FtpWebRequest to upload pictures, but after changing to .Net 4.0 I suddenly get 550 error. The error occurs both when uploading files and listing ...
0
votes
0answers
134 views
Directory info obtained from FTPWebRequest doesn't show year
I'm having problems getting complete date-modified info for files on an FTP site. I'm accessing the site through FTPWebRequest as follows:
public string FTPfolderDetails()
{
string ...
0
votes
2answers
1k views
FtpWebRequest returns “The remote server returned an error: (530) Not logged in”
I get this error "The remote server returned an error: (530) Not logged in." while uploading the file using FtpWebRequest.
Error occurs only when I transfer the files to path having subfolders, ...
0
votes
2answers
150 views
FtpWebRequest download text file: CR/LF removed
I am using FtpWebRequest to download files, but in all text files all \r\n are removed when downloaded.
What am I doing wrong?
Uri u = new Uri(msg);
FtpWebRequest request = ...




