103
106
_abspath = self._abspath(relpath)
104
107
if not _abspath in self._files:
105
108
raise NoSuchFile(relpath)
108
111
def put(self, relpath, f, mode=None):
109
112
"""See Transport.put()."""
110
113
_abspath = self._abspath(relpath)
111
114
self._check_parent(_abspath)
114
117
def mkdir(self, relpath, mode=None):
115
118
"""See Transport.mkdir()."""