Use Process.start()
to start a process to run an executable. This function returns a new process that you can use to interact with the original process. You can use this returned process to obtain the exit code from executing the original process.
import 'dart:io';
main() async {
var process = await Process.start('ls', ['-l']);
// Get the exit code from the new process.
var exitCode = await process.exitCode;
print('exit code: $exitCode');
}
Copyright© 2013-2019