MCPcopy Create free account
hub / github.com/dtormoen/tsk-tsk / create_dir

Function create_dir

src/file_system.rs:5–8  ·  view source on GitHub ↗

Creates a directory at the specified path, including all parent directories.

(path: &Path)

Source from the content-addressed store, hash-verified

3
4/// Creates a directory at the specified path, including all parent directories.
5pub async fn create_dir(path: &Path) -> Result<()> {
6 tokio::fs::create_dir_all(path).await?;
7 Ok(())
8}
9
10/// Recursively copies a directory from source to destination.
11pub fn copy_dir<'a>(

Callers 15

test_is_git_repositoryFunction · 0.85
copy_lfs_objectsFunction · 0.85
copy_repoMethod · 0.85
test_detect_project_nameFunction · 0.85
test_clean_project_nameFunction · 0.85
copy_dirFunction · 0.85

Calls

no outgoing calls