mirror of
https://gitea.com/gitea/tea.git
synced 2025-02-21 17:21:15 +01:00
11 lines
147 B
Go
11 lines
147 B
Go
![]() |
// +build !windows
|
||
|
|
||
|
package xdg
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func pathExists(path string) bool {
|
||
|
_, err := os.Stat(path)
|
||
|
return err == nil || os.IsExist(err)
|
||
|
}
|