我需要从我的 List.txt 中删除文件扩展名后的所有内容,并保留扩展名。
我尝试使用链接中的命令,但没有成功:
如何使用 powershell 删除行尾的空格
powershell-trim-删除字符串后的所有字符
列表:
05 - Earth Wind and Fire - September (The Reflex Revision).mp3 -9,6
06 - Electric Light Orchestra - Last Train To London (Bootleg Extended Dance Remix).flac -9,1
08 - Kool & The Gang - Get Down On It (Soul Funk House Remix).wav -10,7
我需要的:
05 - Earth Wind and Fire - September (The Reflex Revision).mp3
06 - Electric Light Orchestra - Last Train To London (Bootleg Extended Dance Remix).flac
08 - Kool & The Gang - Get Down On It (Soul Funk House Remix).wav
我尝试了该命令,但没有成功:
$content = Get-Content $files
$content | Foreach {$_.Substring(0, $_.IndexOf('.mp3', '.flac', '.wav' ))} | Set-Content $files
怎样删除文件扩展名,保留扩展名?