Create a file: Difference between revisions

→‎{{header|Rust}}: Fixed var names
(→‎{{header|Rust}}: Fixed var names)
Line 1,484:
let f_path = root.as_ref().join(FILE_NAME);
let d_path = root.as_ref().join(DIR_NAME);
DirBuilder::new().create(f_pathd_path).and(File::create(d_pathf_path))
}