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 ...