Function kernel::fs::open_inode
source · pub(crate) fn open_inode<P: AsRef<Path>>(
path: P
) -> Result<(PathBuf, Arc<dyn FileSystem>, Node), FileSystemError>
Expand description
Open the inode of a path, this include directories and files.
This function must be called with an absolute path. Otherwise it will return FileSystemError::MustBeAbsolute
.