Created
December 6, 2024 13:02
-
-
Save stokito/82447f9fc01aa06ef9930e2289b8dbca to your computer and use it in GitHub Desktop.
Golang скопировать папку в Go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func CopyDir(srcDir string, dstDir string) error { | |
err := os.CopyFS(dstDir, os.DirFS(srcDir)) | |
return err | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment