Files
Spark/client/service/file/file_others.go
XZB dae496d934 add: file upload
optimize: project structure
2022-05-21 19:50:01 +08:00

12 lines
163 B
Go

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