C disk space is getting smaller, in the Win7 also marked red, in the mind to see uncomfortable, have to think of some ways to free up some space. See the appdata,chrome accounted for more than 1G of space.
When installing Chrome browser because you cannot specify the installation directory, so the Chrome browser cache file is also default in the system disk, its cache file is very large, it is necessary to deal with. You can use the Mklink command to link the cache location to the location you want under Win7.
Enter Mklink/? In the cmd command line to get the following help:
View Source print?
1 |
MKLINK [[/D] | [/H] | [/J]] Link Target |
The default cache file for Chrome browser is located at: C:\Users\ Login user name \appdata\local\google\chrome\user data\default\cache tiantai Yi Zhuang Metallurgy
Now it's time to create a symbolic link to D:\Chrome\Cache
First C:\Users\ login user name \appdata\local\google\chrome\user data\default\cache this Cache directory deleted. Then enter the command in CMD:
View Source print?
1 |
mklink /D "C:\Users\gonnsai0\AppData\Local\Google\Chrome\User Data\Default\Cache" "D:\Chrome\Cache" |
Show success:
View Source print?
1 |
C:\Users\nowamagic>mklink /D "C:\Users\nowamagic\AppData\Local\Google\Chrome\User |
2 |
Data\Default\Cache " " D:\Chrome\Cache" |
3 |
为 C:\Users\nowamagic\AppData\Local\Google\Chrome\User Data\Default\Cache <<===>> |
4 |
D:\Chrome\Cache 创建的符号链接 |
Now you can see that the cache has successfully established the symbolic link, click on the cache, and actually went to the D:\Chrome\Cache.
Use of the Win7 command Mklink