14 lines
173 B
Go
14 lines
173 B
Go
package usn
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func Test_USN(t *testing.T) {
|
|
fmt.Println("start")
|
|
data, err := ListUsnFile("C:\\")
|
|
fmt.Println(err)
|
|
fmt.Println(len(data))
|
|
}
|