フォルダー内のファイルの内容を見つけようとしているので、フォルダーの内容をリストし、ループしながらファイルを読み取ろうとしています。
files, _ := ioutil.ReadDir("documents/")
for _, f := range files {
//fmt.Println(f.Name())
z := "documents/" + f.Name()
fmt.Println(z) // prints out 'documents/*doc name*' recursively
z, err := ioutil.ReadFile(z) // This line throws up the error
私が得るエラーは: test.go:85: cannot assign []byte to z (type string) in multiple assignment.