Skip to content

Latest commit

 

History

History

os_files

Pub Package package publisher

Introduction

This Dart package that provides information about the operating system files and directories. The package is designed to work in all platforms, including browsers.

Getting started

1.Add dependency

In pubspec.yaml:

dependencies:
  os_files: ^1.0.0

2.Use

import 'package:os_files/os_files.dart';

Future<void> main() async {
  print('Python 3 installed: ${await terminalAppFound('python3')}');
  print('Random temporary directory: ${randomTemporaryDirectory().path}');
}