Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「Rename-Item」を使用して拡張子なしでファイル名を削除し、ファイル名の先頭に数文字を残すことはできますか?
例のために。"0001 ファイル名.txt" > "0000.txt"
次のように部分文字列と組み合わせて使用できます。
$a = "0001 filename.txt" Rename-Item -Path $a -NewName $("$($a.Substring(0,4)).txt")