mirror of
https://github.com/minio/minio.git
synced 2025-01-24 05:03:16 -05:00
On windows translate Prefix, Marker and Delimiter for paths
This commit is contained in:
parent
1157898244
commit
afa27b9847
@ -220,10 +220,10 @@ func (fs Filesystem) ListObjects(bucket string, resources BucketResourcesMetadat
|
|||||||
|
|
||||||
p.root = rootPrefix
|
p.root = rootPrefix
|
||||||
/// automatically treat "/" delimiter as "\\" delimiter on windows due to its path constraints.
|
/// automatically treat "/" delimiter as "\\" delimiter on windows due to its path constraints.
|
||||||
if resources.Delimiter == "/" {
|
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
resources.Delimiter = string(os.PathSeparator)
|
resources.Prefix = strings.Replace(resources.Prefix, "/", string(os.PathSeparator), -1)
|
||||||
}
|
resources.Delimiter = strings.Replace(resources.Delimiter, "/", string(os.PathSeparator), -1)
|
||||||
|
resources.Marker = strings.Replace(resources.Marker, "/", string(os.PathSeparator), -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
// if delimiter is supplied and not prefix then we are the very top level, list everything and move on.
|
// if delimiter is supplied and not prefix then we are the very top level, list everything and move on.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user