Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR RUST

convert path to pathbuf

let path = Path::new("some_thing/hi.txt");
let mut path_buf = PathBuf::new();
path_buf.push(path);
 
PREVIOUS NEXT
Tagged: #convert #path #pathbuf
ADD COMMENT
Topic
Name
5+4 =