Implement creating a new directory.

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

View file

@ -53,6 +53,7 @@ public:
OwnPtr<FileHandle> open(const String& path);
OwnPtr<FileHandle> create(const String& path);
OwnPtr<FileHandle> mkdir(const String& path);
bool isRoot(InodeIdentifier) const;