This commit removes certain file-based functions from 'pkg/environment', continuing the migration to entirely remove the package.
35 lines
763 B
Go
35 lines
763 B
Go
package fsx
|
|
|
|
import (
|
|
"io/fs"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/FAU-CDI/wisski-distillery/pkg/environment"
|
|
)
|
|
|
|
// Touch touches a file.
|
|
// It is similar to the unix 'touch' command.
|
|
//
|
|
// If the file does not exist exists, it is created using [env.Create].
|
|
// If the file does exist, it's access and modification times are updated to the current time.
|
|
func Touch(env environment.Environment, path string, perm fs.FileMode) error {
|
|
if perm == 0 {
|
|
perm = environment.DefaultFilePerm
|
|
}
|
|
_, err := os.Stat(path)
|
|
switch {
|
|
case environment.IsNotExist(err):
|
|
f, err := env.Create(path, perm)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer f.Close()
|
|
return nil
|
|
case err != nil:
|
|
return err
|
|
default:
|
|
now := time.Now().Local()
|
|
return os.Chtimes(path, now, now)
|
|
}
|
|
}
|