解决方式:把图标缓存的数据库删除
一、
第一步:win+r cmd进入命令行
第二步:一行一行键入如下命令
taskkill /im explorer.exe /f
cd /d %userprofile%\appdata\local
del iconcache.db /a
start explorer.exe
exit
二、
创建一个.bat文件
新建txt文件,内容如下:
@echo off
taskkill /im explorer.exe /f
cd /d %userprofile%\appdata\local
del iconcache.db /a
start explorer.exe
exit
保存,文件类型.txt改为.bat
双击运行