Sha256: 31b5bf84fd05efd24cf9af47cf8843ce66720ba2f70d6890005eaa622c30ebad
Contents?: true
Size: 335 Bytes
Versions: 36
Compression:
Stored size: 335 Bytes
Contents
use super::get_path::concatenate; use std::path::Path; use std::{fs, io}; /// *Unsandboxed* function similar to `remove_dir`, but which does not perform /// sandboxing. pub(crate) fn remove_dir_unchecked(start: &fs::File, path: &Path) -> io::Result<()> { let full_path = concatenate(start, path)?; fs::remove_dir(full_path) }
Version data entries
36 entries across 36 versions & 1 rubygems