package files import "testing" const base = "/srv/ftp" const path = "/music/Various" func BenchmarkScanDirectory(b *testing.B) { for i := 0; i < b.N; i++ { /*e, _, _ :=*/ ScanDirectory(base, path) // b.Log(e[len(e)-1], len(e)) } }