mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
9 lines
129 B
Go
9 lines
129 B
Go
|
package file
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func IsExist(path string) bool {
|
||
|
_, err := os.Stat(path)
|
||
|
return err == nil || !os.IsNotExist(err)
|
||
|
}
|