github.com/TrueBlocks/trueblocks-core/src/apps/chifra@v0.0.0-20241022031540-b362680128f7/pkg/file/count.go (about) 1 package file 2 3 import ( 4 "os" 5 ) 6 7 func NFilesInFolder(path string) int { 8 files, _ := os.ReadDir(path) 9 return len(files) 10 }