1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-12 02:30:30 +09:00

Implement creating a new directory.

This commit is contained in:
Andreas Kling 2018-10-16 00:35:03 +02:00
parent 5c50d02c2e
commit f608629704
Notes: sideshowbarker 2024-07-19 18:47:48 +09:00
9 changed files with 224 additions and 20 deletions

View file

@ -38,9 +38,13 @@ int main(int c, char** v)
return 1;
}
#if 1
#if 0
auto newFile = vfs.create("/empty");
printf("vfs.create: %p\n", newFile.ptr());
#endif
#if 1
auto newDir = vfs.mkdir("/mydir");
printf("vfs.mkdir: %p\n", newDir.ptr());
#endif
//return 0;