0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

手っ取り早くフォルダにあるファイルの名前の先頭に任意の文字列をつける

Posted at

使うとき:フォルダの中のファイル名をちゃちゃっと変更したいとき

ファイルエクスプローラーで、変更したいフォルダに行く。

image.png

cmd でコマンドプロンプトを起動。

image.png

※ここのバーに「cmd」と打ち込んでエンターを押すと、そのパスでコマンドプロンプトを起動できる。

cmd 1.png

名前変更

for %f in (*) do ren "%f" "title_%f"

title_は任意の文字列にする。
失敗したときのために、元のファイルをとっておく。

完了。

pngだけとか、このファイル名を置き換えるとか、いろいろできるよ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?