I want to delete a folder in FTP and it's files recursively? Any example code do I can implement? Thank you

link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Nice Little example you can find here:

http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx

In the example they used WebRequestMethods.Ftp.UploadFile class to direct what kind of operation they want to do.

Use the WebRequestMethods.Ftp.RemoveDirectory method once you have a handle on the parent directory you want to delete:

http://msdn.microsoft.com/en-us/library/system.net.webrequestmethods.ftp.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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