Python module to convert between Windows and POSIX path in WSL
Project description
wslPath
wslPath
is a Python module to convert between Windows and POSIX path in WSL
Install
From PyPI:
pip install wslPath
From Conda:
conda install -c conda-forge wslPath
Usages
import wslPath
# Windows to Posix
## Relative path
pathwin = "hoge\\fuga"
wslPath.toPosix(pathwin)
# -> "hoge/fuga"
## Absolute path
pathwin = "C:\\hoge\\fuga"
wslPath.toPosix(pathwin)
# -> "/mnt/c/hoge/fuga"
# Posix to Windows
## Relative path
pathposix = "hoge/fuga"
wslPath.toWindows(pathposix)
# -> "hoge\\fuga"
## Absolute path
pathposix = "/mnt/c/hoge/fuga"
wslPath.toWindows(pathposix)
# -> "C:\\hoge\\fuga"
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wslPath-0.3.1.zip
(6.1 kB
view hashes)