如何使Powershell识别带有变音符“ä”的文件名?

时间:2019-04-12 18:59:55

标签: powershell

我正在运行以下Powershell代码:

$regFiles = @(
    'regs_10_2019-04-10-07_58_48_geän.csv'
)
$base = 'C:\Temp'

$regFiles | %{
    $f = "$base\Archive\$_"
    # vvv This throws an error because it cannot find the file with the 'ä'
    move-item -Path $f -Destination $base
}

如果文件名中带有'ä',则Powershell找不到该文件名。有没有办法让Powershell识别文件名?

谢谢。

0 个答案:

没有答案