You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.3 KiB
Go
101 lines
2.3 KiB
Go
1 year ago
|
package nfs
|
||
|
|
||
|
import (
|
||
|
"git.noahlan.cn/noahlan/ntool/ngo"
|
||
|
"io"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
// ************************************************************
|
||
|
// write, copy files
|
||
|
// ************************************************************
|
||
|
|
||
|
// PutContents create file and write contents to file at once.
|
||
|
//
|
||
|
// data type allow: string, []byte, io.Reader
|
||
|
//
|
||
|
// Tip: file flag default is FsCWTFlags (override write)
|
||
|
//
|
||
|
// Usage:
|
||
|
//
|
||
|
// nfs.PutContents(filePath, contents, nfs.FsCWAFlags) // append write
|
||
|
func PutContents(filePath string, data any, fileFlag ...int) (int, error) {
|
||
|
f, err := QuickOpenFile(filePath, ngo.FirstOr(fileFlag, FsCWTFlags))
|
||
|
if err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
|
||
|
return WriteOSFile(f, data)
|
||
|
}
|
||
|
|
||
|
// WriteFile create file and write contents to file, can set perm for file.
|
||
|
//
|
||
|
// data type allow: string, []byte, io.Reader
|
||
|
//
|
||
|
// Tip: file flag default is FsCWTFlags (override write)
|
||
|
//
|
||
|
// Usage:
|
||
|
//
|
||
|
// nfs.WriteFile(filePath, contents, nfs.DefaultFilePerm, nfs.FsCWAFlags)
|
||
|
func WriteFile(filePath string, data any, perm os.FileMode, fileFlag ...int) error {
|
||
|
flag := ngo.FirstOr(fileFlag, FsCWTFlags)
|
||
|
f, err := OpenFile(filePath, flag, perm)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
_, err = WriteOSFile(f, data)
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// WriteOSFile write data to give os.File, then close file.
|
||
|
//
|
||
|
// data type allow: string, []byte, io.Reader
|
||
|
func WriteOSFile(f *os.File, data any) (n int, err error) {
|
||
|
switch typData := data.(type) {
|
||
|
case []byte:
|
||
|
n, err = f.Write(typData)
|
||
|
case string:
|
||
|
n, err = f.WriteString(typData)
|
||
|
case io.Reader: // eg: buffer
|
||
|
var n64 int64
|
||
|
n64, err = io.Copy(f, typData)
|
||
|
n = int(n64)
|
||
|
default:
|
||
|
_ = f.Close()
|
||
|
panic("WriteFile: data type only allow: []byte, string, io.Reader")
|
||
|
}
|
||
|
|
||
|
if err1 := f.Close(); err1 != nil && err == nil {
|
||
|
err = err1
|
||
|
}
|
||
|
return n, err
|
||
|
}
|
||
|
|
||
|
// CopyFile copy a file to another file path.
|
||
|
func CopyFile(srcPath, dstPath string) error {
|
||
|
srcFile, err := os.OpenFile(srcPath, FsRFlags, 0)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer srcFile.Close()
|
||
|
|
||
|
// create and open file
|
||
|
dstFile, err := QuickOpenFile(dstPath, FsCWTFlags)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer dstFile.Close()
|
||
|
|
||
|
_, err = io.Copy(dstFile, srcFile)
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// MustCopyFile copy file to another path.
|
||
|
func MustCopyFile(srcPath, dstPath string) {
|
||
|
err := CopyFile(srcPath, dstPath)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|