brave-fall-84099
03/31/2025, 2:49 PM<s3://bucket/log/test.txt>
<s3://bucket/log_other/other.txt>
with S3(s3root="<s3://bucket/log/>") as s3:
paths = s3.list_recursive()
paths
will include other/other.txt
. Not only an invalid path but also under the wrong prefix.
s3.list_paths()
will correctly only return test.txt
Am I misunderstanding the API here?square-wire-39606
03/31/2025, 6:39 PMbrave-fall-84099
04/02/2025, 8:51 AM<s3://bucket/log/test.txt>
<s3://bucket/log_other/other.txt> # will be included in list_recrusive with s3root=<s3://bucket/log/>
<s3://bucket/something/other.txt> # will not be included in list_recursive with s3root=<s3://bucket/log/>
brave-fall-84099
05/07/2025, 8:07 AMfreezing-telephone-6958
05/07/2025, 8:08 AMbrave-fall-84099
05/28/2025, 8:32 AMbrainy-truck-72938
05/28/2025, 8:42 AMbrave-fall-84099
05/28/2025, 8:57 AM