業務で複数ファイル名を大量に修正する必要がありましたので
自分用の備忘録として残しておきます。
1.powershellで「㏅」コマンドを使い置換したいフォルダーに移動する。
2.以下コマンドを実行。
#「週次報告書xxxx」ファイルを「週報xxxx」ファイルに置換する
ls | ren -NewName {$_.Name -replace "週次報告書","週報"}
3.以上。
Go to list of users who liked
More than 1 year has passed since last update.
業務で複数ファイル名を大量に修正する必要がありましたので
自分用の備忘録として残しておきます。
1.powershellで「㏅」コマンドを使い置換したいフォルダーに移動する。
2.以下コマンドを実行。
#「週次報告書xxxx」ファイルを「週報xxxx」ファイルに置換する
ls | ren -NewName {$_.Name -replace "週次報告書","週報"}
3.以上。
Register as a new user and use Qiita more conveniently
Go to list of users who liked