Posted on: 10/2/2015 12:48:07 PM | Views : 843

Can someone please tell me how to create in the same time a directory and subdiredory folder on ftp
ftp://ftp.media.myftp/Uploads/Videos/

I was using this
   public static void FtpCreateDirectoryIfNotExists(string directoryPath)         {             try             {                            WebRequest request = WebRequest.Create(directoryPath);                 request.Method = WebRequestMethods.Ftp.MakeDirectory;              &nb ...

Go to the complete details ...