AK: Add LexicalPath::relative_path

This commit is contained in:
Itamar 2021-02-20 16:34:31 +02:00 committed by Andreas Kling
parent 50f887c9d5
commit 7ecb21afa7
2 changed files with 16 additions and 0 deletions

View file

@ -119,4 +119,19 @@ String LexicalPath::canonicalized_path(const StringView& path)
return LexicalPath(path).string();
}
String LexicalPath::relative_path(const String absolute_path, const String& prefix)
{
if (!LexicalPath { absolute_path }.is_absolute() || !LexicalPath { prefix }.is_absolute())
return {};
if (!absolute_path.starts_with(prefix))
return absolute_path;
size_t prefix_length = LexicalPath { prefix }.string().length() + 1;
if (prefix_length >= absolute_path.length())
return {};
return absolute_path.substring(prefix_length);
}
}

View file

@ -50,6 +50,7 @@ public:
bool has_extension(const StringView&) const;
static String canonicalized_path(const StringView&);
static String relative_path(const String absolute_path, const String& prefix);
private:
void canonicalize();