1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

Finally hook up the mkdir code to a syscall.

Added a /bin/mkdir that makes directories. How very neat :^)
There are various limitations because of missing functionality.
This commit is contained in:
Andreas Kling 2018-11-18 14:57:41 +01:00
parent 303577df16
commit de4604ac95
26 changed files with 238 additions and 132 deletions

View file

@ -12,10 +12,15 @@ public:
bool isValid() const { return m_isValid; }
String string() const { return m_string; }
String basename() const { return m_basename; }
String dirname() const { return m_dirname; }
private:
bool canonicalize(bool resolveSymbolicLinks = false);
String m_string;
String m_dirname;
String m_basename;
bool m_isValid { false };
};