Use the Directory createTemp()
method to create a temporary directory. This method appends random characters to the name of the directory to produce a unique directory name.
import 'dart:io';
main() async {
var directory = await Directory.systemTemp.createTemp('my_temp_dir');
print(directory.path);
}
Copyright© 2013-2019