Board logo

标题: [日期时间] 求助批处理生成当前时间 年月日时分秒;输出同级目录的指定文件夹 [打印本页]

作者: bat小猎手    时间: 2023-11-16 15:39     标题: 求助批处理生成当前时间 年月日时分秒;输出同级目录的指定文件夹

求助:生成当前时间 年月日时分秒;输出同级目录的指定文件夹
作者: pd1    时间: 2023-11-16 16:44

详细说说要做什么。
你这句话我翻译一下:能不能帮我把这个东西弄成那个样子?这句话应该没人能理解
作者: ShowCode    时间: 2023-11-16 17:25

回复 1# bat小猎手


1.bat
  1. @echo off
  2. set "FolderName=保存时间"
  3. set "FileName=now_time.txt"
  4. for /f "tokens=2 delims==" %%i in ('wmic Path Win32_OperatingSystem get LocalDateTime /value ^| findstr "="') do (
  5.     set "T=%%i"
  6. )
  7. md "%FolderName%" 2>nul
  8. >>"%FolderName%\%FileName%" echo %T:~0,4%-%T:~4,2%-%T:~6,2% %T:~8,2%:%T:~10,2%:%T:~12,2%
复制代码

作者: ShowCode    时间: 2023-11-16 17:27

回复 1# bat小猎手


2.bat
  1. @echo off
  2. set "FolderName=保存时间"
  3. set "FileName=now_time.txt"
  4. for /f "delims=" %%i in ('powershell -c "Get-Date -UFormat '%%Y%%m%%d%%H%%M%%S'"') do (
  5.     set "T=%%i"
  6. )
  7. md "%FolderName%" 2>nul
  8. >>"%FolderName%\%FileName%" echo %T:~0,4%-%T:~4,2%-%T:~6,2% %T:~8,2%:%T:~10,2%:%T:~12,2%
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2