Added a missing function

This commit is contained in:
Salandora 2015-10-08 15:24:22 +02:00
parent 2530e9b710
commit b5ff8defde

View file

@ -302,6 +302,9 @@ class FileManager(object):
def file_exists(self, destination, path):
return self._storage(destination).file_exists(path)
def folder_exists(self, destination, path):
return self._storage(destination).folder_exists(path)
def list_files(self, destinations=None, path=None, filter=None, recursive=None):
if not destinations:
destinations = self._storage_managers.keys()