コード例 #1
0
 public bool Rename(string oldPath, string newPath)
 {
     try
     {
         _session.MoveFile(oldPath, newPath);
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }