tags:

views:

27

answers:

1

How to delete the directory with sub directory and contents from FTP server in C#?

Thanks,

+3  A: 

You cannot do it with single command. You need to write a recursive method which first deletes subfolders and files.

Giorgi