-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtouchall.cmd
More file actions
22 lines (18 loc) · 807 Bytes
/
touchall.cmd
File metadata and controls
22 lines (18 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
echo Touch all files
set stamp=201604031200
for /r %%G in (*.h) do touch -t %stamp% "%%G"
for /r %%G in (*.cpp) do touch -t %stamp% "%%G"
for /r %%G in (*.rc) do touch -t %stamp% "%%G"
for /r %%G in (*.sln) do touch -t %stamp% "%%G"
for /r %%G in (*.vcxproj*) do touch -t %stamp% "%%G"
for /r %%G in (*.user) do touch -t %stamp% "%%G"
for /r %%G in (*.txt) do touch -t %stamp% "%%G"
for /r %%G in (*.pdf) do touch -t %stamp% "%%G"
for /r %%G in (*.js) do touch -t %stamp% "%%G"
for /r %%G in (*.docx) do touch -t %stamp% "%%G"
for /r %%G in (*.vsd) do touch -t %stamp% "%%G"
for /r %%G in (*.png) do touch -t %stamp% "%%G"
for /r %%G in (*.htm) do touch -t %stamp% "%%G"
for /r %%G in (*.png) do touch -t %stamp% "%%G"
echo Ready
pause