tmp_path 1.0.1
tmp_path: ^1.0.1 copied to clipboard
Generate a unique path in system temp directory.
example/example.dart
// ignore_for_file: avoid_print
import 'package:tmp_path/src/tmp_path.dart';
void main() {
print(tmpPath());
// /var/folders/q5/yvcxrtbn7mq5h4r4zvjhp_v40000gn/T/tmp_9c2dd26b67184afcb6d25bad068726c5
print(tmpPath(prefix: 'test'));
// /var/folders/q5/yvcxrtbn7mq5h4r4zvjhp_v40000gn/T/test_9a2895c181e94602912abe32b7eafed1
}