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