executable 1.0.2 copy "executable: ^1.0.2" to clipboard
executable: ^1.0.2 copied to clipboard

outdated

The executable package provides a simple Dart class for dealing with executables. It helps find and check the existence of executables on the system and caches the results for improved performance.

example/executable_example.dart

import 'package:executable/executable.dart';

void main()  {
  final cp = Executable('cp');
  if (cp.existsSync()) {
    final path = cp.findSync();
    print('The path to ${cp.cmd} executable is $path.');
  } else {
    print('The executable ${cp.cmd} was not found on your system.');
  }
}
5
likes
0
points
17
downloads

Publisher

verified publisherhelio.me

Weekly Downloads

The executable package provides a simple Dart class for dealing with executables. It helps find and check the existence of executables on the system and caches the results for improved performance.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

process_run

More

Packages that depend on executable