pub fn copy_folder_files_into_module(
    folder_path: &Path,
    module_path: &Path,
    ext_for_binary_files: &[&str],
    exclude_big_folders: &[String]
)
Expand description

copy all files from the folder into a module as strings (static &str) the module has the markers: region: files copied into strings by automation tasks and endregion: the string will be in a vector with the file name first we create the complete text, then we check if the old text needs to be replaced ext_for_binary_files=vec![“.ico”,“.jpg”,“.png”,“.woff2”]; exclude_big_folders = vec![“/.git”,“/target”,“/docs”];