Chromium Code Reviews| Index: tests/standalone/io/directory_list_sync_test.dart |
| =================================================================== |
| --- tests/standalone/io/directory_list_sync_test.dart (revision 35982) |
| +++ tests/standalone/io/directory_list_sync_test.dart (working copy) |
| @@ -7,7 +7,8 @@ |
| void main() { |
| File script = new File.fromUri(Platform.script); |
| // tests/standalone/io/../../.. |
|
ricow1
2014/05/19 17:40:22
update comment
hausner
2014/05/19 17:43:42
Done.
|
| - Directory startingDir = script.parent.parent.parent.parent; |
| + Directory startingDir = script.parent.parent.parent; |
| + print("Recursively listing entries in directory ${startingDir.path} ..."); |
|
ricow1
2014/05/19 17:40:22
do we really need this?
hausner
2014/05/19 17:43:42
It helped me understand what's going on. I can tak
|
| List<FileSystemEntity> each = |
| startingDir.listSync(recursive: true, followLinks: false); |
| print("Found: ${each.length} entities"); |