MCPcopy Create free account
hub / github.com/aws/aws-cli / full_path

Method full_path

tests/utils/s3transfer/__init__.py:234–238  ·  view source on GitHub ↗

Translate relative path to full path in temp dir. f.full_path('foo/bar.txt') -> /tmp/asdfasd/foo/bar.txt

(self, filename)

Source from the content-addressed store, hash-verified

232 return full_path
233
234 def full_path(self, filename):
235 """Translate relative path to full path in temp dir.
236 f.full_path('foo/bar.txt') -> /tmp/asdfasd/foo/bar.txt
237 """
238 return os.path.join(self.rootdir, filename)
239
240
241class RecordingOSUtils(OSUtils):

Calls

no outgoing calls