使用split方法解析路径

Android社区 收藏文章

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'])
}
相关标签

扫一扫

在手机上阅读