Files
2018-07-30 13:34:44 +10:00

9 lines
125 B
Go

package common
func IsDirectory(path string) bool {
if string(path[len(path)-1]) != "/" {
return false
}
return true
}