LibCore: Add File::is_directory() helpers

This commit is contained in:
Andreas Kling
2020-02-09 11:50:18 +01:00
parent 80b1af2352
commit 67ccdbe384
2 changed files with 20 additions and 0 deletions

View File

@@ -39,6 +39,9 @@ public:
String filename() const { return m_filename; }
void set_filename(const StringView& filename) { m_filename = filename; }
bool is_directory() const;
static bool is_directory(const String& filename);
virtual bool open(IODevice::OpenMode) override;
enum class ShouldCloseFileDescription {