Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
string testfolder="c: /tests /"; //assuming this path exists.         //we assume in this path a file called `myexec.bat` has been previously created and contains one line `echo Hello;`
         //now the following call will return `0.0|[THE_PATH_OF_EXECUTION]>echo Hello; Hello;|`         return system ("C:/WINDOWS/system32/cmd.exe /c " + testfolder + "myexec.bat" );

Note

Note

For windows operating system, you should put the full (absolute) path of the command.

...