vote up 1 vote down star

Hi There, Could anyone guide me as to the best way to upload a collection of files from a directory to a server from within a WPF client. We have ftp access, and as such I have been looking at WebClient.UploadFile.

There seems to be a number of methods available through webclient though, and Im not sure which would be the most suitable.

Thanks in advance,

flag

69% accept rate
And how is WPF related to it? I can't really see any connection.. – kubal5003 Nov 3 at 16:02
right, it's an WPF application. – Sergio Nov 3 at 16:04
There's really no WPF component to the file uploading itself - webclient works fine for that... – Reed Copsey Nov 3 at 16:19
updated title to reflect this – Sergio Nov 3 at 16:32

1 Answer

vote up 0 vote down check

Just use WebClient.UploadFile or WebClient.UploadFileAsync to upload the files, with one call per file.

This can be as simple as:

WebClient wc = new WebClient();

foreach(var filePath in files)
    wc.UploadFile("ftp://myserver.com/path", filePath);
link|flag
Thanks - by the way, it appears that there is no way to authenticate on the ftp server prior to upload. Is this the case? – Sergio Nov 3 at 16:26
1  
Yes, you can. Just set the WebClient.Credentials property prior to calling UploadFile: msdn.microsoft.com/en-us/library/… – Reed Copsey Nov 3 at 17:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.