1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +00:00

Fix mkdir with relative paths.

This commit is contained in:
Andreas Kling 2018-11-18 23:28:43 +01:00
parent de4604ac95
commit f5a0b6961c
5 changed files with 49 additions and 185 deletions

View file

@ -13,13 +13,11 @@ public:
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 };
};