Versions Compared

Key

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


Info
titleAvailability

This routine is available starting with SIL Engine™ katl-commons 1.0.

Not available on cloud.

Syntax

system(command)

Description

...

Code Block
titleCreating a file using command promptpromt
string testfolder="c:/tests"; //assuming that folderfoler `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 

...