WSL Bash wslpath-Befehl /mnt/c C: Konvertierung

Konvertierung von /mnt/c und C: mit WSL Bash wslpath-Befehl

Eine Notiz zur Konvertierung zwischen Windows-Verzeichnissen und Linux-Verzeichnissen wie /mnt/c und C: mithilfe des wslpath-Befehls in Windows WSL Linux Bash. Der wslpath-Befehl konvertiert <code>/mnt</code> zu <code>C:</code> und umgekehrt.

Shou Arisaka
1 Min. Lesezeit
1. Okt. 2025

Eine Notiz zur Konvertierung zwischen Windows-Verzeichnissen und Linux-Verzeichnissen wie /mnt/c und C: mithilfe des wslpath-Befehls in Windows WSL Linux Bash.

Der wslpath-Befehl konvertiert /mnt zu C: und umgekehrt.

$ wslpath -w /mnt/c/pg/
C:\pg

$ wslpath C:/Users
/mnt/c/Users

Es scheint, dass Bash-Pfade einen Fehler verursachen. Hmm.

$ echo $PWD
/home/yuis/lib
$ wslpath -w $PWD
wslpath: /home/yuis/lib: Result not representable

$ realpath hoge.md
/home/yuis/lib/hoge.md
$ wslpath -w hoge.md
wslpath: hoge.md: Result not representable

Diesen Artikel teilen

Shou Arisaka 1. Okt. 2025

🔗 Links kopieren