Files
hello-algo/ru/codes/dart/build.dart
Yudong Jin 772183705e Add ru version (#1865)
* Add Russian docs site baseline

* Add Russian localized codebase

* Polish Russian code wording

* Update ru code translation.

* Update code translation and chapter covers.

* Fix pythontutor extraction.

* Add README and landing page.

* placeholder of profiles

* Use figures of English version

* Remove chapter paperbook
2026-03-28 04:24:07 +08:00

40 lines
1.0 KiB
Dart

import 'dart:io';
void main() {
Directory foldPath = Directory('codes/dart/');
List<FileSystemEntity> files = foldPath.listSync();
int totalCount = 0;
int errorCount = 0;
for (var file in files) {
if (file.path.endsWith('build.dart')) continue;
if (file is File && file.path.endsWith('.dart')) {
totalCount++;
try {
Process.runSync('dart', [file.path]);
} catch (e) {
errorCount++;
print('Error: $e');
print('File: ${file.path}');
}
} else if (file is Directory) {
List<FileSystemEntity> subFiles = file.listSync();
for (var subFile in subFiles) {
if (subFile is File && subFile.path.endsWith('.dart')) {
totalCount++;
try {
Process.runSync('dart', [subFile.path]);
} catch (e) {
errorCount++;
print('Error: $e');
print('File: ${file.path}');
}
}
}
}
}
print('===== Build Complete =====');
print('Total: $totalCount');
print('Error: $errorCount');
}