mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-09-19 17:25:01 +00:00
10 lines
118 B
Go
10 lines
118 B
Go
![]() |
package machine
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func Exists(path string) bool {
|
||
|
_, err := os.Stat(path)
|
||
|
|
||
|
return !os.IsNotExist(err)
|
||
|
}
|