21 lines
334 B
Go
21 lines
334 B
Go
// 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)
|
|
}
|