public void Upload(string localPath, string remotePath) { ExternalUtil.Run(_adbPath, "-s " + _deviceId + " push \"" + localPath + "\" \"" + remotePath + "\""); }
public static void Init() { ExternalUtil.LoadExternalTool("adb", ref _adbPath, "adbPath"); }
public void Delete(string path) { ExternalUtil.Run(_adbPath, "-s " + _deviceId + " shell rm -f \"" + path + "\""); }
public static void Init() { ExternalUtil.LoadExternalTool("ffmpeg", ref _ffmpegPath, "ffmpegPath"); ExternalUtil.LoadExternalTool("neroAacEnc", ref _neroAacEncPath, "neroAacEncPath"); }