ladybird/AK/FileSystemPath.h
Andreas Kling 954a0b8efe AK: Add a canonicalized_path() convenience function.
This is the same as calling FileSystemPath(foo).string(). The majority of
clients only care about canonicalizing a path, so let's have an easy way
to express that.
2019-07-15 06:50:32 +02:00

36 lines
673 B
C++

#pragma once
#include "AKString.h"
namespace AK {
class FileSystemPath {
public:
FileSystemPath() {}
explicit FileSystemPath(const StringView&);
bool is_valid() const { return m_is_valid; }
const String& string() const { return m_string; }
const String& basename() const { return m_basename; }
const Vector<String>& parts() const { return m_parts; }
bool has_extension(StringView) const;
private:
void canonicalize();
Vector<String> m_parts;
String m_string;
String m_basename;
bool m_is_valid { false };
};
String canonicalized_path(const StringView&);
};
using AK::FileSystemPath;
using AK::canonicalized_path;