Wechat developer tool C disk occupies a large problem

Migrate the files under User Data to other disks, such as D disk, E disk, F disk

Proceed as follows:

1. Find the cache directory where the C disk of the WeChat developer tool is located, usually

C:\Users\ your username \AppData\Local\WeChat Developer Tools\User Data

Cut all the content inside to another drive letter, such as

D:\WeChat web developer tools\User Data

2. Create a soft link through CMD

Execute the following command to create a soft link, pay attention to modifying to your own directory structure

mklink /J "C:\Users\65722\AppData\Local\WeChat Developer Tools\User Data" "D:\WeChat Web Developer Tools\User Data"

Note:
If the prompt "The file already exists, the file cannot be created", you only need to delete the userData of the C drive at this time.
Then re-execute the cmd command

insert image description here

Guess you like

Origin blog.csdn.net/r657225738/article/details/128091321