Files
Spark/client/service/file/file_others.go
2022-03-16 16:26:28 +08:00

11 lines
143 B
Go

// +build !windows
package file
func ListFiles(path string) ([]file, error) {
if len(path) == 0 {
path = `/`
}
return listFiles(path)
}