execFile method
ChildProcess
execFile(
- String file, [
- List<
String> args, - ExecOptions options,
- ExecCallback callback,
Similar to exec except that it does not spawn a shell.
The specified executable file is spawned directly as a new process making it slightly more efficient.
Implementation
external ChildProcess execFile(String file,
[List<String> args, ExecOptions options, ExecCallback callback]);