标题: [日期时间] 批处理怎样创建指定的文件名字+大小+创建时间+修改时间 [打印本页]
作者: 304802301 时间: 2021-9-25 18:16 标题: 批处理怎样创建指定的文件名字+大小+创建时间+修改时间
创建指定的文件名字+大小+创建时间+修改时间
比如我想创建文件名字=1.sql,大小=1111111字节,创建时间=2021-09-21 03:08,修改时间=2021-09-21 06:08
作者: Batcher 时间: 2021-9-25 21:29
回复 1# 304802301 - @echo off
- fsutil file createnew "D:\Test\1.sql" 1111111
- powershell -c "Get-Childitem -Path 'D:\Test\1.sql' | ForEach-Object {$_.CreationTime = '2021-09-21 03:08'; $_.LastWriteTime = '2021-09-21 06:08'}"
复制代码
作者: 304802301 时间: 2021-9-25 23:30
本帖最后由 304802301 于 2021-9-25 23:31 编辑
回复 2# Batcher
可以了,感谢
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |