fix fslocal file_exists
[osm/common.git] / osm_common / fslocal.py
index 7794754..b90b25e 100644 (file)
@@ -93,6 +93,8 @@ class FsLocal(FsBase):
         else:
             f = "/".join(storage)
         if os.path.exists(self.path + f):
+            if not mode:
+                return True
             if mode == "file" and os.path.isfile(self.path + f):
                 return True
             if mode == "dir" and os.path.isdir(self.path + f):