How to run a simple Windows command?
This command:
exec.Command(\"del\", \"c:\\\\aaa.txt\")
.. outputs th
Found another solution too. Create a batch file that contains the following: del c:\aaa.txt
Then call it like this:
exec.Command("c:\\del.bat").Run()