Use the split()
function in the path
Pub package to split a path into its components.
import 'package:path/path.dart' as path;
main() {
print(path.split('/Users/shailen')); // Prints ['/', 'Users', 'shailen'].
// Windows example.
print(path
.split(r'C:\tempdir\tmp.txt')); // Prints [r'C:\', 'tempdir', 'tmp.txt'])
}
Copyright© 2013-2019