k3s/pkg/agent/util/file.go

31 lines
708 B
Go
Raw Normal View History

2019-01-01 08:23:01 +00:00
package util
import (
"os"
"path/filepath"
"github.com/pkg/errors"
)
func WriteFile(name string, content string) error {
2019-01-09 16:54:15 +00:00
os.MkdirAll(filepath.Dir(name), 0755)
err := os.WriteFile(name, []byte(content), 0644)
2019-01-01 08:23:01 +00:00
if err != nil {
return errors.Wrapf(err, "writing %s", name)
}
return nil
}
func CopyFile(sourceFile string, destinationFile string) error {
os.MkdirAll(filepath.Dir(destinationFile), 0755)
input, err := os.ReadFile(sourceFile)
if err != nil {
return errors.Wrapf(err, "copying %s to %s", sourceFile, destinationFile)
}
err = os.WriteFile(destinationFile, input, 0644)
if err != nil {
return errors.Wrapf(err, "copying %s to %s", sourceFile, destinationFile)
}
return nil
}