--ここから--※拡張子.batでコマンドファイルを作成ください
@echo off
rem this command script was developed under Windows 11 (22H2) 2024/10/05 By Z
chcp 65001
rem prepare for the sorce and the destination
set source=C:\narou2\.narou\
rem dest below was written by UTF-8 code (H:\マイドライブ\narouyamlback\ in SJIS)
set dest=H:\繝槭う繝峨Λ繧、繝暴narouyamlback\
rem obtain date and time
set year=%DATE:~0,4%
set month=0%DATE:~5,2%
set month=%month:~-2,2%
set date1=%DATE:~8,2%
set time1=%TIME: =0%
set hour=%time1:~0,2%
set min=%time1:~3,2%
rem ---
set date_time=%year%%month%%date1%_%hour%%min%
pushd %dest%
mkdir %date_time%
cd %date_time%
copy %source%*.yaml *.*
popd
--ここまで--