なぜこれを保存できないのですか?
FOR %%a IN ("some_file_path") DO (
SET FileDateTime=%%~ta
echo !FileDateTime!
)
出力は ~ta
これもうまくいきません。
Setlocal EnableDelayedExpansion
FOR %%a IN ("some_file_path") DO (
SET FileDateTime=!!~ta
)
なぜこれを保存できないのですか?
FOR %%a IN ("some_file_path") DO (
SET FileDateTime=%%~ta
echo !FileDateTime!
)
出力は ~ta
これもうまくいきません。
Setlocal EnableDelayedExpansion
FOR %%a IN ("some_file_path") DO (
SET FileDateTime=!!~ta
)