mirror of
https://gitlab.com/arm-research/smarter/smarter-device-manager.git
synced 2024-11-23 19:21:56 +00:00
Fix sanitizing filenames
Signed-off-by: Alexandre Peixoto Ferreira <alexandref75@gmail.com>
This commit is contained in:
parent
e20fb9b58f
commit
fe9b26d283
2
main.go
2
main.go
@ -93,7 +93,7 @@ func readDevDirectory(dirToList string, allowedRecursions uint8) (files []string
|
|||||||
}
|
}
|
||||||
|
|
||||||
func sanitizeName(path string) string {
|
func sanitizeName(path string) string {
|
||||||
return strings.Replace(path, "/", "_" ,-1)
|
return strings.Replace(path, "/!@#$%^&*()[]{}'`~.", "___________________",-1)
|
||||||
}
|
}
|
||||||
|
|
||||||
func findDevicesPattern(listDevices []string, pattern string) ([]string,error) {
|
func findDevicesPattern(listDevices []string, pattern string) ([]string,error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user