def read(self, path, length, offset):
"""
If the path specified is a file, return the requested portion
of the file
"""
return self._get_file(path).read(length, offset)
def read(self, path, length, offset):
"""
If the path specified is a file, return the requested portion
of the file
"""
return self._get_file(path).read(length, offset)