mirror of
https://github.com/Jinnrry/PMail.git
synced 2025-11-01 12:22:38 +08:00
12 lines
161 B
Go
12 lines
161 B
Go
package file
|
|
|
|
import "os"
|
|
|
|
func PathExist(_path string) bool {
|
|
_, err := os.Stat(_path)
|
|
if err != nil && os.IsNotExist(err) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|