Saved Bookmarks
| 1. |
Solve : searching? |
|
Answer» HI, Does anyone KNOW how to search for files that were created on the current date? Thanks.Can you not use the search function in Windows? The advanced options screen lets you use date created as a search criteria. In batch, this LITTLE diddy might help you out: Code: [Select] @ECHO off for /f "tokens=6" %%a in ('echo. ^| date') do (set arg=%%a) dir /tc /s /a:-d | find "%arg%" The code is set for the current directory and below. You can expand this by using a path and some wildcards. |
|