1 2 3 4 5 6 7 8 9
package filepath // Separator is an explicit-OS version of path/filepath's Separator. func Separator(os string) rune { if os == "windows" { return '\\' } return '/' }