Versions Compared

Key

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

This routine is available starting with SIL Engine™ 1.0.

Syntax

system(command)

...

Code Block
titleCreating a file using command promtprompt
string testfolder="c:/tests"; //assuming that folerfolder `tests` has been already created in c:\ path

system("C:/WINDOWS/system32/cmd.exe /c echo return true; > " + testfolder + "qqq.sil"); // you can run here any other program or custom script 

...