タイムスタンプを維持しながら変換したいビデオゲームのスクリーンショットが何年にもわたってたくさんあるので、他の画像と時系列で整理することができます。
私はすでに画像コンバーターを使用しましたが、それはそれらの日付属性をリセットします。
irfanViewのバッチ変換機能には、日付と時刻を保持するための高度なオプションがあります。
イェンス
このPowerShellスクリプトは次の仕事をするかもしれません:
#copy timestamp from files in folder A to files in folder B.
#user file folders (default assumes powershell script is in parent folder of both A and B)
$A = ".\bmp" #source
$B = ".\png" #target
$count = 0
$B_content = ls $B
foreach($file in ls $A){
$otherfile = $B_content[$count]
$otherfile.LastWriteTime=$file.LastWriteTime;
$count++
}