我正在运行以下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识别文件名?
谢谢。