mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-22 13:45:19 +00:00
cdf3636ae7
Use the standard library function [`os.CopyFS`](https://pkg.go.dev/os#CopyFS) to copy directories. This also should be slightly faster.
16 lines
356 B
Go
16 lines
356 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package unittest
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// CopyDir copy files recursively from source to target directory.
|
|
//
|
|
// It returns error when error occurs in underlying functions.
|
|
func CopyDir(srcPath, destPath string) error {
|
|
return os.CopyFS(destPath, os.DirFS(srcPath))
|
|
}
|