From a141d740fd9ba6f972aa0829b4b451d7a437ffaa Mon Sep 17 00:00:00 2001 From: Les De Ridder Date: Tue, 8 Nov 2016 03:17:21 +0100 Subject: [PATCH] Implement access() --- source/filesystem.d | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/filesystem.d b/source/filesystem.d index e9c114f..82baf81 100644 --- a/source/filesystem.d +++ b/source/filesystem.d @@ -158,6 +158,13 @@ class FileSystem : Operations return realPath.length; } + override bool access(const(char)[] path, int mode) + { + //TODO: Check if this should always be true + + return true; + } + override string[] readdir(const(char)[] path) { if(path in _dirCache)