假设您有这样的路径:
$myPath = 'C:\Python\27'
在 PowerShell 中是否有更可靠的方式将该路径转换为 Unix 格式,而不是\
像这样替换 s ?
PS C:\> $myPath -replace '\\','/'
C:/Python/27
假设您有这样的路径:
$myPath = 'C:\Python\27'
在 PowerShell 中是否有更可靠的方式将该路径转换为 Unix 格式,而不是\
像这样替换 s ?
PS C:\> $myPath -replace '\\','/'
C:/Python/27