Например,
package main
import (
"fmt"
"os"
"strconv"
)
func main() {
fi, err := os.Stat("test.go")
if err != nil {
fmt.Fprintln(os.Stderr, err)
return
}
perm := fi.Mode().Perm()
fmt.Println(perm)
fmt.Printf("%o\n", perm)
fmt.Printf("%#o\n", perm)
fmt.Println(strconv.FormatUint(uint64(perm), 8))
fmt.Println("0" + strconv.FormatUint(uint64(perm), 8))
}
Вывод:
-rw-rw-r--
664
0664
664
0664