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