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