mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
30 lines
492 B
Go
30 lines
492 B
Go
package common
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func FileExists(path string) bool {
|
|
return Error(os.Stat(path)) == nil
|
|
}
|
|
|
|
func WriteFile(path string, content []byte) error {
|
|
if strings.Contains(path, "/") {
|
|
parent := path[:strings.LastIndex(path, "/")]
|
|
if !FileExists(parent) {
|
|
err := os.MkdirAll(parent, 0o755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
file, err := os.Create(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
_, err = file.Write(content)
|
|
return err
|
|
}
|