Shell快捷路径 | 对应文件夹 |
---|---|
shell:AccountPictures |
用户头像 |
shell:AddNewProgramsFolder |
控制面板\所有控制面板项\获得程序 |
shell:Administrative Tools |
Windows 管理工具,C:\Users\username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools |
shell:AppData |
类似%appdata%,C:\Users\username\AppData\Roaming |
shell:Application Shortcuts |
应用程序快捷方式,C:\Users\username\AppData\Local\Microsoft\Windows\Application Shortcuts |
shell:AppsFolder |
Applications虚拟文件夹 |
shell:AppUpdatesFolder |
已安装更新 |
shell:Cache |
IE缓存文件夹,`C:\Use |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# project_reducer.py | |
# 项目引用关系传递归约工具 | |
import os | |
import re | |
import xml.etree.ElementTree as ET | |
from collections import defaultdict, deque | |
import glob | |
from datetime import datetime | |
class CSharpProjectReducer: |