pub fn create_files(files: &Files) -> Result<()>Expand description
Create files from the given (path, content) tuple array.
ยงExample
let files = vec![(PathBuf::from("programs/my_program/src/lib.rs"), "// Content".to_string())];
create_files(&files)?;