You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package wincmd
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func Test_USN(t *testing.T) {
|
|
fmt.Println("start")
|
|
data, err := ListUsnFile("C:\\")
|
|
fmt.Println(err)
|
|
fmt.Println(len(data))
|
|
}
|