示例#1
0
 public static void unzip(string strFilePathZip, string strDirPathDst)
 {
     ProcessUtils.openAppByBlock(FILE_PATH_7Z, string.Format(CMD_UNZIP, strFilePathZip, strDirPathDst));
 }
示例#2
0
 public static void toImg(string strFilePathImg)
 {
     ProcessUtils.openAppByBlockAndEnv("java", string.Format("-jar {0} {1}", FILE_PATH, strFilePathImg));
 }
示例#3
0
 public static void xcopy(string strDirPathSrc, string strDirPathDst)
 {
     ProcessUtils.openAppByBlock("xcopy", string.Format("\"{0}\" \"{1}\\\" /y /e", strDirPathSrc, strDirPathDst));
 }