Ejemplo n.º 1
0
 public void MakeFolder(string cpath)
 {
     try
     {
         if (FTP)
         {
             _ftpc.MakeDirectory(cpath);
         }
         else
         {
             _sftpc.CreateDirectory(cpath);
         }
     }
     catch
     {
         if (!Exists(cpath))
         {
             throw;
         }
     }
 }