LoginSignup
11
8

More than 5 years have passed since last update.

Twitterとかでダウンロードした.jpg-large画像を一気に.jpgにするバッチファイル

Last updated at Posted at 2017-05-07

なにこれ

Twitterで画像をダウンロードすると"hoge.jpg-large"とかになってエクスプローラでサムネ表示されないし,ビューワもダブルクリックで起動してくれない.
いちいちリネームするのもめんどい.
だから,ドラッグアンドドロップで名前を書きかえてくれるやつをつくった.

内容

以下の内容をメモ帳とかに書いて*.batと名前を付けて保存する.

large_remover.bat
@echo off
for %%f in (%*) do (
  ren %%f *.jpg
)

使い方

つくった*.batに画像をドラッグアンドドロップすると拡張子を.jpgに変えてくれる.
画像を大量保存する人にはちょっと便利.

宣伝

フォローお願いします:raising_hand_tone2: @redshoga

11
8
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
11
8