--- aliases: - /doc/localfiles/ lastmod: 2015-08-07 date: 2015-06-12 menu: main: parent: extras next: /community/mailing-list notoc: true prev: /extras/urls title: Traversing Local Files weight: 110 --- ## Traversing Local Files Hugo includes a way to traverse local files. This is done using the 'readDir' function. ## Using readDir readDir takes a single string input that is relative to the root directory of the site. It returns an array of [os.FileInfo](https://golang.org/pkg/os/#FileInfo) Let's create a shortcode to build a file index with links using readDir. 'fileindex.html'
Size in bytes | Name | {{$dir := .Get "dir"}} {{ $url := .Get "baseurl" }} {{ $files := readDir $dir }} {{ range $files }}
---|---|
{{.Size}} | {{.Name}} |