lxutil/unix/
path.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use std::borrow::Cow;
use std::ffi::OsStr;
use std::os::unix::prelude::*;
use std::path::Path;

// No-op implementation of path_from_lx for Unix.
pub fn path_from_lx(path: &[u8]) -> lx::Result<Cow<'_, Path>> {
    Ok(Cow::Borrowed(OsStr::from_bytes(path).as_ref()))
}