在 Windows 文件资源管理器中,两个“%”符号之间可以使用什么来快速导航到特定位置?

在 Windows 文件资源管理器中,两个“%”符号之间可以使用什么来快速导航到特定位置?

如果这个问题应该在其他网站上提出,请告诉我。抱歉,因为我不知道这个问题的正确名称。

例如:使用 %localappdata% 将导航至“C:\Users\User\AppData\Local”。是否有一个列表,列出我可以在两个“%”符号之间使用的所有这些可能的快捷方式?

另外,这些的正确名称应该叫什么?

答案1

%sometext%语法是一种适用于 Explorer 和命令提示符的 Windows 机制。
它被称为“环境变量扩展”。
该序列只是被存储在名为“sometext”的环境变量中的文本替换(也称为“扩展”)。

因此,%localappdata%只需用环境变量“localappdata”中存储的内容替换即可,而这恰好适合c:\users\user\appdata\local您的情况。

要查看所有可用环境变量的列表,请打开命令提示符窗口并输入命令SET
(或者在 PowerShell 中输入命令dir env:。)
这将显示所有变量及其当前值。
显然,只有包含路径的变量(并非所有变量都包含路径)才适合在 Explorer 中使用。

答案2

对 Tonny 的回答的补充:

使用以下格式:

  • explorer "shell:<KnownFolderName>"

您可以访问其他位置,包括虚拟文件夹,例如This PC, 使用:

  • explorer "shell:MyComputerFolder"

KnownFolders 在注册表中定义如下:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions

您可以生成以下名称的列表:电源外壳使用:

( 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions' | gci | gp ).Name

大多数(但不是全部)名称都以这种方式起作用:

AccountPictures
Roaming Tiles
Common Programs
PublicAccountPictures
GameTasks
UserProfiles
MyComputerFolder
SearchHistoryFolder
Local Pictures
SyncSetupFolder
DpapiKeys
Retail Demo
Favorites
My Video
SearchHomeFolder
RecordedTVLibrary
System
Libraries
ThisDeviceFolder
AppsFolder
MusicLibrary
CommonVideo
OneDriveDocuments
SyncResultsFolder
LocalizedResourcesDir
Cookies
CameraRollLibrary
Original Images
Recorded Calls
3D Objects
CommonMusic
OneDrivePictures
My Pictures
Cache
Local Videos
Downloads
SavedPictures
CommonDownloads
AppData
SyncCenterFolder
PublicLibraries
VideosLibrary
My Music
ConflictFolder
SavedGames
InternetFolder
HomeGroupFolder
Quick Launch
SystemCertificates
AppDataProgramData
Contacts
UserProgramFiles
Device Metadata Store
Profile
Start Menu
Common AppData
ProgramFilesCommonX64
PhotoAlbums
ProgramFilesX64
ConnectionsFolder
Administrative Tools
ThisPCDesktopFolder
OneDriveCameraRoll
PrintersFolder
AppMods
DocumentsLibrary
AppDataDocuments
ProgramFilesX86
AppDataFavorites
Searches
Local Downloads
SearchTemplatesFolder
Common Startup
ControlPanelFolder
SendTo
ResourceDir
ProgramFiles
CredentialManager
PrintHood
MAPIFolder
HomeGroupCurrentUserFolder
User Pinned
CD Burning
Local Music
UsersLibrariesFolder
AppUpdatesFolder
Application Shortcuts
Common Start Menu
Common Start Menu Places
LocalAppDataLow
OneDrive
Templates
Programs
PicturesLibrary
Roamed Tile Images
Camera Roll
Recent
AppDataDesktop
Desktop
CommonPictures
RecycleBinFolder
Screenshots
CryptoKeys
Common Templates
Startup
ImplicitAppShortcuts
UserProgramFilesCommon
Links
OEM Links
OneDriveMusic
Common Desktop
NetHood
Ringtones
Common Administrative Tools
NetworkPlacesFolder
SystemX86
History
Development Files
AddNewProgramsFolder
Playlists
ProgramFilesCommonX86
PublicGameTasks
ChangeRemoveProgramsFolder
Public
SavedPicturesLibrary
CommonRingtones
Common Documents
Captures
CSCFolder
Local AppData
Windows
UsersFilesFolder
Local Documents
ProgramFilesCommon
Fonts
Personal

相关内容