def copydir(self, src, dst, overwrite=False, ignore_errors=False, chunk_size=16384): if self.getmeta("read_only"): raise errors.UnsupportedError('read only filesystem') # FIXME: this is out of date; how to do native tahoe copy? # FIXME: Workaround because isfile() not exists on _TahoeLAFS FS.copydir(self, src, dst, overwrite, ignore_errors, chunk_size)
def copydir(self, src, dst, **kwds): FS.copydir(self,src,dst,**kwds)
def copydir(self, src, dst, **kwds): FS.copydir(self, src, dst, **kwds)