Amirhossein Kazemnejad
Results
2
comments of
Amirhossein Kazemnejad
aria2c executable is invoked by this code ``` public void launch() { corePath = "/data/data/moduleName/files/aria2c"; runCommand = new String[]{corePath, "--enable-rpc", "-D","-d \"/storage/sdcard0/Download\""}; try { Process coreProcess = Runtime.getRuntime().exec(runCommand); coreProcess.waitFor(); }...
Do you know why does it need create directory there? (in pc doesn't need for a simple download), May be it is related to config file or something like that?