util/file_test.go

21 lines
334 B
Go
Raw Normal View History

2023-07-31 15:39:02 +08:00
// Package util ...
//
// Description : util ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-07-31 15:15
package util
import (
"testing"
)
func Test_file_ReadDirFileList(t *testing.T) {
res, err := File.ReadDirFileList("./", false, true)
if nil != err {
panic(err.Error())
}
JSON.ConsoleOutput(res)
}