1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

feat: Preserve original file permissions & Default copy permissions c… (#2969)

This commit is contained in:
the harder the luckier 2023-09-19 20:20:13 +08:00 committed by GitHub
parent 42de1c1dbe
commit 7c9eefef3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 4 deletions

View File

@ -30,7 +30,7 @@ const (
DefaultPermOpen = os.FileMode(0666)
// DefaultPermCopy is the default perm for file/folder copy.
DefaultPermCopy = os.FileMode(0777)
DefaultPermCopy = os.FileMode(0755)
)
var (

View File

@ -17,8 +17,16 @@ import (
// CopyOption is the option for Copy* functions.
type CopyOption struct {
Sync bool // Auto call file sync after source file content copied to target file.
Mode os.FileMode // Destination created file mode. The default file mode is DefaultPermCopy.
// Auto call file sync after source file content copied to target file.
Sync bool
// Preserve the mode of the original file to the target file.
// If true, the Mode attribute will make no sense.
PreserveMode bool
// Destination created file mode.
// The default file mode is DefaultPermCopy if PreserveMode is false.
Mode os.FileMode
}
// Copy file/directory from `src` to `dst`.
@ -162,6 +170,9 @@ func CopyFile(src, dst string, option ...CopyOption) (err error) {
return
}
}
if usedOption.PreserveMode {
usedOption.Mode = srcStat.Mode().Perm()
}
if err = Chmod(dst, usedOption.Mode); err != nil {
return
}
@ -192,6 +203,9 @@ func CopyDir(src string, dst string, option ...CopyOption) (err error) {
if !si.IsDir() {
return gerror.NewCode(gcode.CodeInvalidParameter, "source is not a directory")
}
if usedOption.PreserveMode {
usedOption.Mode = si.Mode().Perm()
}
if !Exists(dst) {
if err = os.MkdirAll(dst, usedOption.Mode); err != nil {
err = gerror.Wrapf(

View File

@ -377,7 +377,7 @@ func ExampleChmod() {
// Output:
// -rw-r--r--
// -rwxrwxrwx
// -rwxr-xr-x
}
func ExampleAbs() {

View File

@ -7,6 +7,7 @@
package gfile_test
import (
"os"
"testing"
"github.com/gogf/gf/v2/os/gfile"
@ -100,6 +101,41 @@ func Test_CopyFile(t *testing.T) {
t.Assert(gfile.GetContents(src), srcContent)
t.Assert(gfile.GetContents(dst), srcContent)
})
// Set mode
gtest.C(t, func(t *gtest.T) {
var (
src = "/testfile_copyfile1.txt"
dst = "/testfile_copyfile2.txt"
dstMode = os.FileMode(0600)
)
t.AssertNil(createTestFile(src, ""))
defer delTestFiles(src)
t.Assert(gfile.CopyFile(testpath()+src, testpath()+dst, gfile.CopyOption{Mode: dstMode}), nil)
defer delTestFiles(dst)
dstStat, err := gfile.Stat(testpath() + dst)
t.AssertNil(err)
t.Assert(dstStat.Mode().Perm(), dstMode)
})
// Preserve src file's mode
gtest.C(t, func(t *gtest.T) {
var (
src = "/testfile_copyfile1.txt"
dst = "/testfile_copyfile2.txt"
)
t.AssertNil(createTestFile(src, ""))
defer delTestFiles(src)
t.Assert(gfile.CopyFile(testpath()+src, testpath()+dst, gfile.CopyOption{PreserveMode: true}), nil)
defer delTestFiles(dst)
srcStat, err := gfile.Stat(testpath() + src)
t.AssertNil(err)
dstStat, err := gfile.Stat(testpath() + dst)
t.AssertNil(err)
t.Assert(srcStat.Mode().Perm(), dstStat.Mode().Perm())
})
}
func Test_CopyDir(t *testing.T) {