Walk a directory/Recursively: Difference between revisions

Content added Content deleted
m (→‎{{header|Dart}}: Further identify dir/file to better perform action)
m (→‎{{header|Dart}}: Add missing import headers)
Line 790: Line 790:
=={{header|Dart}}==
=={{header|Dart}}==
<syntaxhighlight lang="dart">
<syntaxhighlight lang="dart">
import 'dart:io' show Directory;
import 'dart:io' show Directory, Platform, File;


void main(List<String> args) {
void main(List<String> args) {