mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
23 lines
385 B
Go
23 lines
385 B
Go
package utils
|
|
|
|
import "os"
|
|
|
|
// Determine whether the given path is a folder
|
|
func IsDir(path string) bool {
|
|
s, err := os.Stat(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return s.IsDir()
|
|
}
|
|
|
|
// Determine whether the given path is a file
|
|
func IsFile(path string) bool {
|
|
return !IsDir(path)
|
|
}
|
|
|
|
// Create a directory
|
|
func MkDir(path string) error {
|
|
return os.MkdirAll(path, os.ModePerm)
|
|
}
|