flowey_lib_common/_util/
wslpath.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use std::path::PathBuf;

pub fn win_to_linux(path: impl AsRef<std::path::Path>) -> PathBuf {
    let sh = xshell::Shell::new().unwrap();
    let path = path.as_ref();
    xshell::cmd!(sh, "wslpath {path}")
        .quiet()
        .ignore_status()
        .read()
        .unwrap()
        .into()
}

pub fn linux_to_win(path: impl AsRef<std::path::Path>) -> PathBuf {
    let sh = xshell::Shell::new().unwrap();
    let path = path.as_ref();
    xshell::cmd!(sh, "wslpath -aw {path}")
        .quiet()
        .ignore_status()
        .read()
        .unwrap()
        .into()
}