如何找到其他用户的 MyMusic 文件夹?
如何找到其他用户的MyMusic文件夹?
how to find MyMusic Folder of other users ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何找到其他用户的MyMusic文件夹?
how to find MyMusic Folder of other users ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以使用
Environment.SpecialFolder
枚举以及Environment.GetFolderPath
来访问“特殊”用户文件夹,如下所示:You can use the
Environment.SpecialFolder
enum along withEnvironment.GetFolderPath
to get access to "special" user folders, like so:记录的方法是使用 SHGetFolderLocation< /a> 和 hToken 参数,问题是您需要用户名和密码来调用 LogonUser (您也可以调用 WTSQueryUserToken 如果您作为服务运行,但这会限制您只能访问当前活动的会话)
现在您只能使用 未记录的内容:
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList (%windir%\Profiles on Win9x)
SE_RESTORE_NAME
HKEY_USERS\{SIDYOUGOTFROMPROFILELIST}\Software\Microsoft\Windows\CurrentVersion\ Explorer\User Shell 文件夹
注意:您需要是管理员才能执行此操作,并且它仅适用于本地帐户。
The documented way to do this is to use SHGetFolderLocation and the hToken parameter, the problem is that you need the username and password to call LogonUser (You could also call WTSQueryUserToken if you are running as a service, but that limits you to the currently active sessions)
Now you are left with using undocumented stuff:
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
(%windir%\Profiles on Win9x)SE_RESTORE_NAME
HKEY_USERS\{SIDYOUGOTFROMPROFILELIST}\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
Note: You need to be admin to do this and it only works for local accounts.
如果您运行程序的帐户具有管理权限,您不能直接导航到
c:\Users\\Music
(这是 Windows7 上的路径)。如果您正在另一台计算机上查找用户的文件夹,那就更困难了。
编辑:
似乎有一种方法可以做到这一点, 来自 MSDN:
对于“我的音乐”,rfid 是您要查找的文件夹的 KNOWNFOLDERID:
If the account you are running the program on has administrative privlieges, can't you just navigate to
c:\Users\<UserName>\Music
(which is the path on Windows7).If you're looking for folders of users on another machine, then that is more difficult.
EDIT:
It appears that there is a way to do this, from MSDN:
With the rfid being the KNOWNFOLDERID of the folder you are looking for in the case of My Music: