-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathClean.bat
More file actions
25 lines (25 loc) · 759 Bytes
/
Clean.bat
File metadata and controls
25 lines (25 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
:: chrome核浏览器垃圾清理批处理,放在userData目录
:: rd/s/q "Media Cache"2>NUL
del /s/q *.tmp
del /s/q *.bak
rd /s/q component_crx_cache
rd /s/q extensions_crx_cache
md component_crx_cache
md extensions_crx_cache
del /s/f/q "Crashpad\*"
del /s/f/q "GrShaderCache\*"
del /s/f/q "Guest Profile\*"
del /s/f/q "ShaderCache\*"
:: 取得当前批处理所在路径
:: cd /d %~dp0
cd Default
::del /s/f/q "Pepper Data\*"
del /s/f/q "Application Cache\*"
del /s/f/q "Media Cache\*"
del /s/f/q "Service Worker\CacheStorage\*"
for /d %%d in ("Service Worker\CacheStorage\*") do rd /s/q "%%d"
for /d %%d in ("Local Storage\http*") do rd /s/q "%%d"
for /d %%d in ("IndexedDB\http*") do rd /s/q "%%d"
::del /s/f/q Cache\*
::del /s/f/q GPUCache\*
::pause