示例#1
0
 public static void CopyFolderContents(NPath fromPath, NPath toPath)
 {
     Logger.Trace("CopyFolderContents from {0} to {1}", fromPath, toPath);
     toPath.DeleteContents();
     fromPath.MoveFiles(toPath, true);
 }