mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-22 16:35:33 +00:00
8 lines
147 B
Rust
8 lines
147 B
Rust
use std::fs;
|
|
|
|
fn main() {
|
|
assert!(
|
|
fs::create_dir_all("/fyi/fs_create_dir-existing-directory.dir/existing_directory").is_ok()
|
|
);
|
|
}
|