create_file

Function create_file 

Source
pub fn create_file(path: &str) -> bool
Expand description

Creates a file and returns a boolean based on success or failure.

ยงUsage:

assert_eq!(fsutils::create_file("the_file"), true);