Reputation: 31
How to delete the directory with sub directory and contents from FTP server in C#?
Thanks,
Upvotes: 2
Views: 361
Reputation: 30883
You cannot do it with single command. You need to write a recursive method which first deletes subfolders and files.
Upvotes: 3