mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
68 lines
1.7 KiB
Go
68 lines
1.7 KiB
Go
package file
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/fs"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/fleetdm/fleet/v4/pkg/secure"
|
|
)
|
|
|
|
// Copy copies the file from srcPath to dstPath, using the provided permissions.
|
|
//
|
|
// Note that on Windows the permissions support is limited in Go's file functions.
|
|
func Copy(srcPath, dstPath string, perm os.FileMode) error {
|
|
src, err := os.Open(srcPath)
|
|
if err != nil {
|
|
return fmt.Errorf("open src for copy: %w", err)
|
|
}
|
|
defer src.Close()
|
|
|
|
if err := secure.MkdirAll(filepath.Dir(dstPath), os.ModeDir|perm); err != nil {
|
|
return fmt.Errorf("create dst dir for copy: %w", err)
|
|
}
|
|
|
|
dst, err := secure.OpenFile(dstPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, perm)
|
|
if err != nil {
|
|
return fmt.Errorf("open dst for copy: %w", err)
|
|
}
|
|
defer dst.Close()
|
|
|
|
if _, err := io.Copy(dst, src); err != nil {
|
|
return fmt.Errorf("copy src to dst: %w", err)
|
|
}
|
|
if err := dst.Sync(); err != nil {
|
|
return fmt.Errorf("sync dst after copy: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Copy copies the file from srcPath to dstPath, using the permissions of the original file.
|
|
//
|
|
// Note that on Windows the permissions support is limited in Go's file functions.
|
|
func CopyWithPerms(srcPath, dstPath string) error {
|
|
stat, err := os.Stat(srcPath)
|
|
if err != nil {
|
|
return fmt.Errorf("get permissions for copy: %w", err)
|
|
}
|
|
|
|
return Copy(srcPath, dstPath, stat.Mode().Perm())
|
|
}
|
|
|
|
// Exists returns whether the file exists and is a regular file.
|
|
func Exists(path string) (bool, error) {
|
|
info, err := os.Stat(path)
|
|
if err != nil {
|
|
if errors.Is(err, fs.ErrNotExist) {
|
|
return false, nil
|
|
}
|
|
return false, fmt.Errorf("check file exists: %w", err)
|
|
}
|
|
|
|
return info.Mode().IsRegular(), nil
|
|
}
|