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?

More than 1 year has passed since last update.

【写真整理】不要な写真をコマンドプロンプトで削除する

Last updated at Posted at 2022-05-30

デジタルカメラで写真を撮る人は便利かもです。
NEFはニコンのRAWデータ形式なので、他のカメラメーカーの方はお使いの形式に置き換えてください。

使い方

  1. 撮った写真のJPGとRAWデータを同じフォルダに置く(メモリーカードからコピー)
  2. フォルダのJPGを「フォト」などの画像ビューアで見ながら不要な写真を削除する
  3. 不要な写真のRAWデータが残るので、以下のコマンドを実行する
@echo off 
cd フォルダ名
copy *.JPG *.DEL
ren *.NEF *.DEL
del *.DEL

@echo off でコマンドの復唱を停止
cd フォルダ名でデータのあるフォルダに移動
copy *.JPG *.DELで必要な写真のDELファイルが生成されます(最後に消えます)
ren *.NEF *.DELで不要な写真はDELファイルに変わり、必要な写真はすでにDELファイルがあるので何も起きません
del *.DELですべてのDELファイルが消えます
これで不要な写真のRAWデータが削除できました

ほぼこのサイトと同じです。自分用に@echo offcd フォルダ名を追記しました。
https://sawa.i-shany.com/pc/software/5093/

フォルダがCドライブ以外の場合はこの記事を参照ください。
https://qiita.com/Nemy/items/3ab1f91010ea9908d673

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?