refractor: move internal build function to util.

This commit is contained in:
Alexandre Pujol 2024-03-25 21:45:18 +00:00
parent 5d40cc1166
commit ac935ce81c
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 71 additions and 0 deletions

View file

@ -7,6 +7,8 @@ package util
import (
"encoding/hex"
"regexp"
"github.com/arduino/go-paths-helper"
)
type RegexReplList []RegexRepl
@ -67,3 +69,29 @@ func RemoveDuplicate[T comparable](inlist []T) []T {
}
return list
}
// CopyTo recursivelly copy all files from a source path to a destination path.
func CopyTo(src *paths.Path, dst *paths.Path) error {
files, err := src.ReadDirRecursiveFiltered(nil,
paths.FilterOutDirectories(),
paths.FilterOutNames("README.md"),
)
if err != nil {
return err
}
for _, file := range files {
destination, err := file.RelFrom(src)
if err != nil {
return err
}
destination = dst.JoinPath(destination)
if err := destination.Parent().MkdirAll(); err != nil {
return err
}
if err := file.CopyTo(destination); err != nil {
return err
}
}
return nil
}