(rootfs: str, cwd: str, path: str)
| 17 | return Path(path).resolve() |
| 18 | |
| 19 | def nt_to_native(rootfs: str, cwd: str, path: str) -> str: |
| 20 | p = QlOsPath(rootfs, cwd, QL_OS.WINDOWS) |
| 21 | |
| 22 | return p.virtual_to_host_path(path) |
| 23 | |
| 24 | def posix_to_native(rootfs: str, cwd: str, path: str) -> str: |
| 25 | p = QlOsPath(rootfs, cwd, QL_OS.LINUX) |
no test coverage detected