Skip to content

Instantly share code, notes, and snippets.

@hofiorg
Created August 13, 2014 08:05
Show Gist options
  • Save hofiorg/79d381f85987824aa0d8 to your computer and use it in GitHub Desktop.
Save hofiorg/79d381f85987824aa0d8 to your computer and use it in GitHub Desktop.
dart - start system process (windows)
import 'dart:io';
void main() {
Process.start('cmd /c start c:/Windows/System32/notepad.exe', [], workingDirectory: 'c:/Windows/System32/');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment