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 2023-02-09

操作方法

  • 日付文字列を追加したいファイルやフォルダを選択した後、右クリック > AddDateFilename.bat を実行します。
  • 複数選択には対応していません。

メディア1.gif

準備

バッチファイルの記述

  • メモ帳やVSCodeなどに下記コードをコピーあるいは記述します。
@echo off
title ファイル名やフォルダ名の先頭に、更新日時文字列を追加
rem ファイル名やフォルダ名の先頭に、更新日時文字列を追加します。

set N1_DATE_TIME=%~t1
set N1_DATE_TIME=%N1_DATE_TIME:/=%
set N1_DATE_TIME=%N1_DATE_TIME:(=%
set N1_DATE_TIME=%N1_DATE_TIME:)=%
set N1_DATE_TIME=%N1_DATE_TIME: =%
set N1_DATE=%N1_DATE_TIME:~0,8%

ren ""%1"" "%N1_DATE%_%~nx1"

右クリックメニューへの登録

  • Windowsのスタートメニューから「ファイル名を指定して実行」を選択して shell:sendto と入力し、 %USERPROFILE%\AppData\Roaming\Microsoft\Windows\SendTo フォルダを開きます。
  • そこに先ほどのファイルを保存します。ここでは、ファイル名を AddDateFilename.bat とします。
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?