Merge pull request #935 from harshavardhana/fs-bucket

On windows translate Prefix, Marker and Delimiter for paths
This commit is contained in:
Harshavardhana 2015-10-21 22:08:52 -07:00
commit dbe3d9489e

View File

@ -220,10 +220,10 @@ func (fs Filesystem) ListObjects(bucket string, resources BucketResourcesMetadat
p.root = rootPrefix
/// automatically treat "/" delimiter as "\\" delimiter on windows due to its path constraints.
if resources.Delimiter == "/" {
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.