summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/File.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibCore/File.h')
-rw-r--r--Userland/Libraries/LibCore/File.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCore/File.h b/Userland/Libraries/LibCore/File.h
index d85856e6b1..12b5223ed0 100644
--- a/Userland/Libraries/LibCore/File.h
+++ b/Userland/Libraries/LibCore/File.h
@@ -47,6 +47,9 @@ public:
bool is_directory() const;
static bool is_directory(const String& filename);
+ bool is_device() const;
+ static bool is_device(const String& filename);
+
static bool exists(const String& filename);
static bool ensure_parent_directories(const String& path);