X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_common%2Ffsbase.py;h=208ab87f4baa9eb01d7e41095893acc78834a607;hb=c9e91d8f01689ea917149a640b3a0e855ffb45a1;hp=b941c2186072a71dcb296a915848181d3119abd1;hpb=1e9a329ca0085be33665e35d123394905bc46d74;p=osm%2Fcommon.git diff --git a/osm_common/fsbase.py b/osm_common/fsbase.py index b941c21..208ab87 100644 --- a/osm_common/fsbase.py +++ b/osm_common/fsbase.py @@ -62,6 +62,12 @@ class FsBase(object): def mkdir(self, folder): raise FsException("Method 'mkdir' not implemented") + def dir_rename(self, src, dst): + raise FsException("Method 'dir_rename' not implemented") + + def dir_ls(self, storage): + raise FsException("Method 'dir_ls' not implemented") + def file_exists(self, storage): raise FsException("Method 'file_exists' not implemented")