使用Join方法连接路径

Android社区 收藏文章

Use the path Pub package, and use join() to create a new path from existing paths. Using join() ensures that the current platform's directory separator is used in the path.

import 'package:path/path.dart' as path;

main() {
  var newPath = path.join('/Users/shailen', 'dart/projects');
  print(newPath); // Prints '/Users.shailen/dart/projects'.
}
相关标签

扫一扫

在手机上阅读