DOS新建以當(dāng)前時(shí)間為文件名的文件
標(biāo)簽(空格分隔): Shell
Dos查看日期加時(shí)間的方法
echo %date% %time%
output:
2016/02/25 周四 22:49:36.08
echo %date:~0,4%%date:~5,2%%date:~8,2%%time:~0,2%%time:~3,2%
output:
201602252250
新建文件:
新建任意文件名.任意文件類(lèi)型的空文件:
echo a 2>FileName.type
新建以當(dāng)前時(shí)間為文件名的空txt文件:
echo a 2>%date:~0,4%%date:~5,2%%date:~8,2%%time:~0,2%%time:~3,2%.txt
以"_"間隔:
echo a 2>%date:~0,4%_%date:~5,2%_%date:~8,2%_%time:~0,2%_%time:~3,2%.txt
使用PowerShell
獲取時(shí)間:
Get-Date
output:
2016年2月25日 23:31:57
輸出時(shí)間:
Write-Host "$(Get-Date), hello!"
output:
02/25/2016 23:34:06, hello!
格式化輸出時(shí)間:
yyyy 年
M 月
d 日
h 小時(shí)(12小時(shí)制)
H 小時(shí)(24小時(shí)制)
m 分鐘
s 秒
Get-Date -Format 'yyyy_MM_dd_HH_mm_ss'
output:
2016_02_25_23_37_56
新建文件:
New-Item FileName -ItemType f
-ItemType : f(file)表示文件,d(directory)表示目錄
-ItemType可以簡(jiǎn)寫(xiě)為:Type
新建以時(shí)間命名的文件:
New-Item -ItemType file "$((Get-Date).ToString('yyyy_MM_dd_HH_mm')).txt"
指定目錄名+文件名,在任意目錄創(chuàng)建文件:
New-Item -ItemType file "./$((Get-Date).ToString('yyyy_MM_dd_HH_mm')).txt"
新建以時(shí)間命名的目錄:
New-Item -ItemType Directory -Path ".\$((Get-Date).ToShortDateString())"
目錄結(jié)構(gòu):./yyyy/MM/dd/
或者:
New-Item -ItemType Directory -Path ".\$((Get-Date).ToString('yyyy-MM-dd'))"
此時(shí)的目錄結(jié)構(gòu):./yyyy-MM-dd/
end