[PowerShell]大量自動修改檔名並將檔名自動編號

Richard Tsai
Jun 21, 2021

--

這是網路上查來的, 在Windows 下可以利用PowerShell 來處理.

這裡的例子為例, 會將原來的檔名變更為 result_0.txt , result_1.txt, result_2.txt …., 所以在 -NewName 裡的”result_{0}.txt”, 為檔名格式, 並從 0 開始編號, 若此資料有10個檔案, 檔名自然會變成 result_0.txt, result_1.txt … result_9.txt.

記得要改成自己需要的格式

# 將檔名自動編號

Dir * | %{Rename-Item $_ -NewName ("result_{0}.txt" -f $c++)}

--

--

Richard Tsai
Richard Tsai

Written by Richard Tsai

人的大腦是用來思考, 解決問題, 不是拿來當記事本

No responses yet