bat 批处理-取年、月、日、时、分、秒、毫秒
取年份:echo %date:~0,4%
取月份:echo %date:~5,2%
取日期:echo %date:~8,2%
取星期:echo %date:~10,6%
取小时:echo %time:~0,2%
取分钟:echo %time:~3,2%
取秒:echo %time:~6,2%
取毫秒:echo %time:~9,2%
相关文章
- 11-11DateTime.ToString()输出"年/月/日 时:分:秒"的格式
- 11-112008年5月12日14时28分04秒
- 11-11【笔记】将时间转换为xx年xx月xx日xx时xx分xx秒格式
- 11-11sql 计算两时间或日期 的相差的 年、 月、 日、时、分、秒,年、月、日分别的提取
- 11-11bat 批处理-取年、月、日、时、分、秒、毫秒
- 11-11JS返回当前时间(年、月、日、时、分、秒)
- 11-11根据随身固态U盘卷标搜索U盘盘符并打开文件的批处理脚本.bat 徐晓亮 595076941@qq.com 2019年12月19日6点50分
- 11-11javascript输出当前日期(年、月、日、星期、时、分、秒)
- 11-11SQL Server返回DATETIME类型,年、月、日、时、分、秒、毫秒
- 11-11java获取两个时间的相隔时间,包括年、月、日、时、分、秒