在Dart中,如何从脚本路径获取特定目录

时间:2015-06-24 12:44:03

标签: file io path dart

我的目录结构如下:

-project -dart -src -test -mytest.dart -test_data -testdata.csv

在mytest.dart中我想访问testdata.csv,从mytest.dart获取testdata.csv的绝对和平台无关路径的最佳方法是什么?

这有效,但也许有更好的方法?:

Directory projectRoot = new Directory.fromUri(Platform.script).parent.parent.parent;
String testDataPath = path.absolute(projectRoot.path, 'test_data', 'testdata.csv');

0 个答案:

没有答案