|
@@ -210,8 +210,8 @@ func (a ServerMessageBlockFileSystemAbstraction) Glob(realpathWildcard string) (
|
|
|
}
|
|
|
|
|
|
for _, thisMatch := range matches {
|
|
|
- filteredMatches = append(filteredMatches, filepath.ToSlash(thisMatch))
|
|
|
- fmt.Println(filepath.ToSlash(thisMatch))
|
|
|
+ filteredMatches = append(filteredMatches, strings.ReplaceAll(thisMatch, "\\", "/"))
|
|
|
+ fmt.Println(filepath.ToSlash(thisMatch), strings.ReplaceAll(thisMatch, "\\", "/"))
|
|
|
}
|
|
|
return filteredMatches, nil
|
|
|
}
|