I'd like to use nim to execute something like "C:UsersMeAppDataLocalThe AppTheApp.exe --uninstall --silent" or "bob" for short
What is the simplest way to handle the space in the directory path on the windows os?
- I tried discard execShellCmd(bob) -> failed due to space
- I tried discard execShellCmd("bob") -> failed due to space
- I tried let x = execProcess("TheApp.exe",""C:UsersMeAppDataLocalThe App",args =["--uninstall", "--silent"]) -> failed but mentions args.len==0 in the err msg which I don't really follow