execFile method

ChildProcess execFile(
  1. String file, [
  2. List<String> args,
  3. ExecOptions options,
  4. 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]);