Archived
1
This repository has been archived on 2025-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
playbookctl/internal/utils/filesystem.go
2024-12-19 18:48:26 +03:00

16 lines
255 B
Go

package utils
import "os"
func SaveStaticFile(path string, data []byte) error {
return os.WriteFile(path, data, 0644)
}
func CreateDir(path string) error {
return os.Mkdir(path, 0755)
}
func RemoveFile(path string) error {
return os.Remove(path)
}