Closed Chocobozzz closed 3 years ago
Hi @Chocobozzz 👋 Thanks for pointing this out. I am rather busy right now but try to have a more detailed look next week. I assume that this has to do with the new file name escaping introduced some versions ago in #158. In that case, the prefix would need to be escaped. Out of interest: Do manually escaped prefixes hls%2F
or hls%2Ftoto
work? (I will also have a look at the dependency.)
Hi @jakobvogel
Yes, manually escaping prefix works
Thank you for trying this out for me @Chocobozzz — #182 should fix the problem.
Works like a charm, thanks @jakobvogel
Hello, and thanks for the really useful project!
I created an object storage key containing
/
(hls/toto/filename.mp4
). UsingListObjectsV2Command
with aPrefix
only works if we don't specify/
:Prefix: 'hls'
correctly returnshls/toto/filename.mp4
Prefix: 'hls/'
orPrefix: 'hls/toto'
does not return anythingUnfortunately I could not debug it because of a dependency issue when compiling the project (
mvn compile
):Thanks!