I'm currently using RootTools to try and move and file that's downloading into the Downloads Folder into the System Directory
Command command = new Command(0, "cp -f " + Environment.DIRECTORY_DOWNLOADS +"/old.html" + " /system/new.html");
RootTools.getShell(true).add(command);
But for whatever reason, this doesn't actually work .
Any ideas?