mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
8 lines
125 B
Go
8 lines
125 B
Go
package common
|
|
|
|
func IsDirectory(path string) bool {
|
|
if string(path[len(path)-1]) != "/" {
|
|
return false
|
|
}
|
|
return true
|
|
}
|