blob: 3b03b64eaf54b2f6b62d5cb000912284bda99a22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma once
#include <AK/String.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 String& title() const { return m_title; }
const String& extension() const { return m_extension; }
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;
String m_title;
String m_extension;
bool m_is_valid { false };
};
String canonicalized_path(const StringView&);
};
using AK::canonicalized_path;
using AK::FileSystemPath;
|