好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

使用Join方法连接路径

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'.
} 

查看更多关于使用Join方法连接路径的详细内容...

  阅读:61次