Describe the bug, including details regarding any error messages, version, and platform.
The problem
Imagine in the following directory structure:
container-name/a/ directory
container-name/a.txt file
fs->GetFileInfo("container-name/a/") returns FileType::NotFound.
Why it happens
fs->GetFileInfo("container-name/a/") returns causes a list with prefix a and limit 1.
- The result is
a.txt because . comes before / lexographically.
- This doesn't match the requested name so return
FileType::NotFound.
Component(s)
C++
Describe the bug, including details regarding any error messages, version, and platform.
The problem
Imagine in the following directory structure:
fs->GetFileInfo("container-name/a/")returnsFileType::NotFound.Why it happens
fs->GetFileInfo("container-name/a/")returns causes a list with prefixaand limit 1.a.txtbecause.comes before/lexographically.FileType::NotFound.Component(s)
C++