九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
使用forfiles 刪除幾天前的數(shù)據(jù)
使用forfiles 刪除幾天前的數(shù)據(jù)
 
rem 刪除前一天的歷史數(shù)據(jù)
forfiles /m *.fc /s /D -1 /c "cmd /c del @file"

rem 刪除當(dāng)前目錄下及其子目錄中的空文件夾
for /f "tokens=*" %a in ('dir /b /ad /s E:\FileCache^|sort /r') do rd "%a" /q 2>nul

在批處理中把%改成%%
for /f "tokens=*" %%a in ('dir /b /ad /s E:\FileCache^|sort /r') do rd "%%a" /q 2>nul

Forfiles

windows server 2003內(nèi)置命令

開關(guān)很少,p路徑,m 方式,s包含子目錄,c執(zhí)行命令,d日期

普通使用可能比不上for,dir等, 但是c這個(gè)開關(guān)很強(qiáng)大的

command string:
@file    - returns the name of the file.
@fname   - returns the file name without extension.
@ext     - returns only the extension of the file.
@path    - returns the full path of the file.
@relpath - returns the relative path of the file.
@isdir   - returns "TRUE" if a file type is a directory, and "FALSE" for files.
@fsize   - returns the size of the file in bytes.
@fdate   - returns the last modified date of the file.
@ftime   - returns the last modified time of the file.


FORFILES /P C:\WINDOWS /S /M DNS*.*
列出windows及其子目錄下DNS開頭的所有文件

FORFILES /S /M *.txt /C "cmd /c type @file | more"
列出當(dāng)前目錄以及子目錄下所有的txt文檔的內(nèi)容,并以分頁(yè)的形式打印出來

FORFILES /P C:\ /S /M *.bat
列出windows及其子目錄下的bat文件

FORFILES /D -30 /M *.exe /C "cmd /c echo @path 0x09 was changed 30 days ago"

列出30天內(nèi)修 改過的exe文件,列出路徑+自定義文字0x09(tab) was changed 30 days ago

FORFILES /D 2001/01/01 /C "cmd /c echo @fname is new since Jan 1st 2001"

列出 2001、0101后的文件并打印文檔名字+is new since Jan 1st 2001

FORFILES /D +2009/4/10 /C "cmd /c echo @fname is new today"

列出20090410后修改過的文 件,并打印

FORFILES /M *.exe /D -1

列出一天前到現(xiàn)在修改過的exe文件
FORFILES /S /M *.doc /C "cmd /c echo @fsize"

列出doc文件,并打印出文件大小

FORFILES /M *.txt /C "cmd /c if @isdir==FALSE notepad.exe @file"

列出txt文件, 如果不是文件夾,那么就依次用notepad打開該文件,關(guān)閉后開啟下一個(gè)文件。
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
SQL Server 2005數(shù)據(jù)庫(kù)定期備份和刪除歷史備份記錄
【轉(zhuǎn)載】微軟教你卸載IE9/IE10/IE11瀏覽器
DOS刪除文件
刪除指定創(chuàng)建日期前的文件夾、文件
如何使用FORFILES命令來刪除SQL Server備份
備份刪除批處理
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服