Index: frog/file_system.dart |
diff --git a/frog/file_system.dart b/frog/file_system.dart |
index 9cc6966301c7255c680fe2909bd525580e967360..e9af84177509f1537e97e8b6fe0d09e5094de7ea 100644 |
--- a/frog/file_system.dart |
+++ b/frog/file_system.dart |
@@ -15,6 +15,9 @@ interface FileSystem { |
void writeString(String outfile, String text); |
bool fileExists(String filename); |
+ |
+ void createDirectory(String path, [bool recursive]); |
+ void removeDirectory(String path, [bool recursive]); |
} |
/** Join [path1] to [path2]. */ |