2019独角兽企业重金招聘Python工程师标准>>>

偶然间发现 SHGetSpecialFolderPath 这个API真是好东西,好多系统目录都可以直接获取了,再也不用一点点的拼装了。MSDN上的说明如下:

Syntax

BOOL SHGetSpecialFolderPath(      HWND hwndOwner,LPTSTR lpszPath,int nFolder,BOOL fCreate );

Parameters

hwndOwner
A handle to the owner window that the client should specify if it displays a dialog box or message box.
lpszPath
A pointer to a null-terminated string that receives the drive and path of the specified folder. This buffer must be at least MAX_PATH characters in size.
nFolder
A CSIDL that identifies the folder of interest. If a virtual folder is specified, this function will fail.
fCreate
Indicates whether the folder should be created if it does not already exist. If this value is nonzero, the folder will be created. If this value is zero, the folder will not be created.

Return Value

Returns TRUE if successful, or FALSE otherwise.

这个 CSIDL 不同,获取的目录就不同,可以取到的目录有:

CSIDL_ADMINTOOLS (FOLDERID_AdminTools)
Version 5.0. The file system directory that is used to store administrative tools for an individual user. The Microsoft Management Console (MMC) will save customized consoles to this directory, and it will roam with the user.
CSIDL_ALTSTARTUP (FOLDERID_Startup)
The file system directory that corresponds to the user's nonlocalized Startup program group. This value is recognized in Windows Vista for backward compatibility, but the folder itself no longer exists.
CSIDL_APPDATA (FOLDERID_RoamingAppData)
Version 4.71. The file system directory that serves as a common repository for application-specific data. A typical path is C:\Documents and Settings\ username\Application Data. This CSIDL is supported by the redistributable Shfolder.dll for systems that do not have the Microsoft Internet Explorer 4.0 integrated Shell installed.
CSIDL_BITBUCKET (FOLDERID_RecycleBinFolder)
The virtual folder that contains the objects in the user's Recycle Bin.
CSIDL_CDBURN_AREA (FOLDERID_CDBurning)
Version 6.0. The file system directory that acts as a staging area for files waiting to be written to a CD. A typical path is C:\Documents and Settings\ username\Local Settings\Application Data\Microsoft\CD Burning.
CSIDL_COMMON_ADMINTOOLS (FOLDERID_CommonAdminTools)
Version 5.0. The file system directory that contains administrative tools for all users of the computer.
CSIDL_COMMON_ALTSTARTUP (FOLDERID_CommonStartup)
The file system directory that corresponds to the nonlocalized Startup program group for all users. Valid only for Microsoft Windows NT systems. This value is recognized in Windows Vista for backward compatibility, but the folder itself no longer exists.
CSIDL_COMMON_APPDATA (FOLDERID_ProgramData)
Version 5.0. The file system directory that contains application data for all users. A typical path is C:\Documents and Settings\All Users\Application Data. This folder is used for application data that is not user specific. For example, an application can store a spell-check dictionary, a database of clip art, or a log file in the CSIDL_COMMON_APPDATA folder. This information will not roam and is available to anyone using the computer.
CSIDL_COMMON_DESKTOPDIRECTORY (FOLDERID_PublicDesktop)
The file system directory that contains files and folders that appear on the desktop for all users. A typical path is C:\Documents and Settings\All Users\Desktop. Valid only for Windows NT systems.
CSIDL_COMMON_DOCUMENTS (FOLDERID_PublicDocuments)
The file system directory that contains documents that are common to all users. A typical paths is C:\Documents and Settings\All Users\Documents. Valid for Windows NT systems and Microsoft Windows 95 and Windows 98 systems with Shfolder.dll installed.
CSIDL_COMMON_FAVORITES (FOLDERID_Favorites)
The file system directory that serves as a common repository for favorite items common to all users. Valid only for Windows NT systems.
CSIDL_COMMON_MUSIC (FOLDERID_PublicMusic)
Version 6.0. The file system directory that serves as a repository for music files common to all users. A typical path is C:\Documents and Settings\All Users\Documents\My Music.
CSIDL_COMMON_OEM_LINKS (FOLDERID_CommonOEMLinks)
This value is recognized in Windows Vista for backward compatibility, but the folder itself is no longer used.
CSIDL_COMMON_PICTURES (FOLDERID_PublicPictures)
Version 6.0. The file system directory that serves as a repository for image files common to all users. A typical path is C:\Documents and Settings\All Users\Documents\My Pictures.
CSIDL_COMMON_PROGRAMS (FOLDERID_CommonPrograms)
The file system directory that contains the directories for the common program groups that appear on the Start menu for all users. A typical path is C:\Documents and Settings\All Users\Start Menu\Programs. Valid only for Windows NT systems.
CSIDL_COMMON_STARTMENU (FOLDERID_CommonStartMenu)
The file system directory that contains the programs and folders that appear on the Start menu for all users. A typical path is C:\Documents and Settings\All Users\Start Menu. Valid only for Windows NT systems.
CSIDL_COMMON_STARTUP (FOLDERID_CommonStartup)
The file system directory that contains the programs that appear in the Startup folder for all users. A typical path is C:\Documents and Settings\All Users\Start Menu\Programs\Startup. Valid only for Windows NT systems.
CSIDL_COMMON_TEMPLATES (FOLDERID_CommonTemplates)
The file system directory that contains the templates that are available to all users. A typical path is C:\Documents and Settings\All Users\Templates. Valid only for Windows NT systems.
CSIDL_COMMON_VIDEO (FOLDERID_PublicVideos)
Version 6.0. The file system directory that serves as a repository for video files common to all users. A typical path is C:\Documents and Settings\All Users\Documents\My Videos.
CSIDL_COMPUTERSNEARME (FOLDERID_NetworkFolder)
The folder that represents other computers in your workgroup.
CSIDL_CONNECTIONS (FOLDERID_ConnectionsFolder)
The virtual folder that represents Network Connections, that contains network and dial-up connections.
CSIDL_CONTROLS (FOLDERID_ControlPanelFolder)
The virtual folder that contains icons for the Control Panel applications.
CSIDL_COOKIES (FOLDERID_Cookies)
The file system directory that serves as a common repository for Internet cookies. A typical path is C:\Documents and Settings\ username\Cookies.
CSIDL_DESKTOP (FOLDERID_Desktop)
The virtual folder that represents the Windows desktop, the root of the namespace.
CSIDL_DESKTOPDIRECTORY (FOLDERID_Desktop)
The file system directory used to physically store file objects on the desktop (not to be confused with the desktop folder itself). A typical path is C:\Documents and Settings\ username\Desktop.
CSIDL_DRIVES (FOLDERID_ComputerFolder)
The virtual folder that represents My Computer, containing everything on the local computer: storage devices, printers, and Control Panel. The folder can also contain mapped network drives.
CSIDL_FAVORITES (FOLDERID_Favorites)
The file system directory that serves as a common repository for the user's favorite items. A typical path is C:\Documents and Settings\ username\Favorites.
CSIDL_FONTS (FOLDERID_Fonts)
A virtual folder that contains fonts. A typical path is C:\Windows\Fonts.
CSIDL_HISTORY (FOLDERID_History)
The file system directory that serves as a common repository for Internet history items.
CSIDL_INTERNET (FOLDERID_InternetFolder)
A virtual folder for Internet Explorer.
CSIDL_INTERNET_CACHE (FOLDERID_InternetCache)
Version 4.72. The file system directory that serves as a common repository for temporary Internet files. A typical path is C:\Documents and Settings\ username\Local Settings\Temporary Internet Files.
CSIDL_LOCAL_APPDATA (FOLDERID_LocalAppData)
Version 5.0. The file system directory that serves as a data repository for local (nonroaming) applications. A typical path is C:\Documents and Settings\ username\Local Settings\Application Data.
CSIDL_MYDOCUMENTS (FOLDERID_Documents)
Version 6.0. The virtual folder that represents the My Documents desktop item. This value is equivalent to CSIDL_PERSONAL.
CSIDL_MYMUSIC (FOLDERID_Music)
The file system directory that serves as a common repository for music files. A typical path is C:\Documents and Settings\User\My Documents\My Music.
CSIDL_MYPICTURES (FOLDERID_Pictures)
Version 5.0. The file system directory that serves as a common repository for image files. A typical path is C:\Documents and Settings\ username\My Documents\My Pictures.
CSIDL_MYVIDEO (FOLDERID_Videos)
Version 6.0. The file system directory that serves as a common repository for video files. A typical path is C:\Documents and Settings\ username\My Documents\My Videos.
CSIDL_NETHOOD (FOLDERID_NetHood)
A file system directory that contains the link objects that may exist in the My Network Places virtual folder. It is not the same as CSIDL_NETWORK, which represents the network namespace root. A typical path is C:\Documents and Settings\ username\NetHood.
CSIDL_NETWORK (FOLDERID_NetworkFolder)
A virtual folder that represents Network Neighborhood, the root of the network namespace hierarchy.
CSIDL_PERSONAL (FOLDERID_Documents)
Version 6.0. The virtual folder that represents the My Documents desktop item. This is equivalent to CSIDL_MYDOCUMENTS.

Previous to Version 6.0. The file system directory used to physically store a user's common repository of documents. A typical path is C:\Documents and Settings\username\My Documents. This should be distinguished from the virtual My Documents folder in the namespace. To access that virtual folder, use SHGetFolderLocation, which returns the ITEMIDLIST for the virtual location, or refer to the technique described in Managing the File System.

CSIDL_PRINTERS (FOLDERID_PrintersFolder)
The virtual folder that contains installed printers.
CSIDL_PRINTHOOD (FOLDERID_PrintHood)
The file system directory that contains the link objects that can exist in the Printers virtual folder. A typical path is C:\Documents and Settings\ username\PrintHood.
CSIDL_PROFILE (FOLDERID_Profile)
Version 5.0. The user's profile folder. A typical path is C:\Documents and Settings\ username. Applications should not create files or folders at this level; they should put their data under the locations referred to by CSIDL_APPDATA or CSIDL_LOCAL_APPDATA.
CSIDL_PROGRAM_FILES (FOLDERID_ProgramFiles)
Version 5.0. The Program Files folder. A typical path is C:\Program Files.
CSIDL_PROGRAM_FILESX86 (FOLDERID_ProgramFilesX86)
CSIDL_PROGRAM_FILES_COMMON (FOLDERID_ProgramFilesCommon)
Version 5.0. A folder for components that are shared across applications. A typical path is C:\Program Files\Common. Valid only for Windows NT, Windows 2000, and Windows XP systems. Not valid for Windows Millennium Edition (Windows Me).
CSIDL_PROGRAM_FILES_COMMONX86 (FOLDERID_ProgramFilesCommonX86)
CSIDL_PROGRAMS (FOLDERID_Programs)
The file system directory that contains the user's program groups (which are themselves file system directories). A typical path is C:\Documents and Settings\ username\Start Menu\Programs.
CSIDL_RECENT (FOLDERID_Recent)
The file system directory that contains shortcuts to the user's most recently used documents. A typical path is C:\Documents and Settings\ username\My Recent Documents. To create a shortcut in this folder, use SHAddToRecentDocs. In addition to creating the shortcut, this function updates the Shell's list of recent documents and adds the shortcut to the My Recent Documents submenu of the Start menu.
CSIDL_RESOURCES (FOLDERID_ResourceDir)
Windows Vista. The file system directory that contains resource data. A typical path is C:\Windows\Resources.
CSIDL_RESOURCES_LOCALIZED (FOLDERID_LocalizedResourcesDir)
CSIDL_SENDTO (FOLDERID_SendTo)
The file system directory that contains Send To menu items. A typical path is C:\Documents and Settings\ username\SendTo.
CSIDL_STARTMENU (FOLDERID_StartMenu)
The file system directory that contains Start menu items. A typical path is C:\Documents and Settings\ username\Start Menu.
CSIDL_STARTUP (FOLDERID_Startup)
The file system directory that corresponds to the user's Startup program group. The system starts these programs whenever any user logs onto Windows NT or starts Windows 95. A typical path is C:\Documents and Settings\ username\Start Menu\Programs\Startup.
CSIDL_SYSTEM (FOLDERID_System)
Version 5.0. The Windows System folder. A typical path is C:\Windows\System32.
CSIDL_SYSTEMX86 (FOLDERID_SystemX86)
CSIDL_TEMPLATES (FOLDERID_Templates)
The file system directory that serves as a common repository for document templates. A typical path is C:\Documents and Settings\ username\Templates.
CSIDL_WINDOWS (FOLDERID_Windows)
Version 5.0. The Windows directory or SYSROOT. This corresponds to the %windir% or %SYSTEMROOT% environment variables. A typical path is C:\Windows.
Flags 
CSIDL_FLAG_CREATE (KF_FLAG_CREATE)
Version 5.0. Combine with another CSIDL to force the creation of the associated folder if it does not exist.
CSIDL_FLAG_DONT_UNEXPAND (KF_FLAG_DONT_UNEXPAND)
Combine with another CSIDL constant to ensure the expansion of environment variables.
CSIDL_FLAG_DONT_VERIFY (KF_FLAG_DONT_VERIFY)
Combine with another CSIDL constant, except for CSIDL_FLAG_CREATE, to return an unverified folder path with no attempt to create or initialize the folder.
CSIDL_FLAG_NO_ALIAS (KF_FLAG_NO_ALIAS)
Combine with another CSIDL constant to ensure the retrieval of the true system path for the folder, free of any aliased placeholders such as %USERPROFILE%, returned by SHGetFolderLocation. This flag has no effect on paths returned by SHGetFolderPath.
CSIDL_FLAG_MASK 
A mask for any valid CSIDL flag value.

转载于:https://my.oschina.net/SmileWolf/blog/17204

直接获取Program Files目录的API相关推荐

  1. Program Files 目录的dos文件名模式下的缩写PROGRA~1

    ERROR: NDK path cannot contain any spaces! PS:在有些路径设置里会包含有空格space的文件名或者文件夹名,比如 D:\Program Files,而有些应 ...

  2. win10user文件夹迁移_windows 7、Windows10 系统目录迁移,修改安装的默认路径:Users,Program Files,ProgramData...

    Tips:本文只针对Win7.windows 10系统有过测试,其他系统尚未测试:不过大家想尝试也可.这次实验是我做的全新 win7_32位系统来测试的,windows10当然64位的系统也可.至少现 ...

  3. Program Files可以删除吗?绝对不可以!

    用户在检查电脑时发现C盘有个Program Files文件夹,占用不少空间,那当我们空间不足时,Program Files文件夹能删除吗?绝对不可以!下面就来听小编分析分析. Program File ...

  4. Windows系统目录迁移:Users,Program Files,ProgramData

    Windows7系统目录迁移:Users,Program Files,ProgramData 微软设计了比如:我的文档.我的OOXX,之类的东西,在WIN7下面更连游戏.下载等等目录都设计好了,我也很 ...

  5. RuntimeError: Failed to init API, possibly an invalid tessdata path: C:\Program Files\Tesseract

    家里配置了新电脑,用的windows10,重新装了python3.6.6,安装tesserocr,总是有问题.好不容易tesseract和tesserocr都安装好了,然后执行print(tesser ...

  6. c#获取应用程序目录

    string str1 =Process.GetCurrentProcess().MainModule.FileName;//可获得当前执行的exe的文件名.   string str2=Enviro ...

  7. android获取文件上级目录,Android 文件存储

    Android 存储位置及 API 一.内部存储 应用安装后都会在Android 根目录生成 /data/data/packagename,当前应用读取不需要读写权限 注意: 有些开发者可能看到过应用 ...

  8. 问题:org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0

    在用as开发项目的过程中,我碰到了这个错误,在网上找到了如下的解决方法,做下总结: 被编译的代码或资源有问题( finished with non-zero exit value 1): 出现这种编译 ...

  9. VC 获取当前工作目录和执行目录的一些方法

    1.System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName      获取模块的完整路径. 2.   System.Env ...

最新文章

  1. nginx大量TIME_WAIT的解决办法(转载)
  2. Java程序设计第二次作业
  3. 软件工程--第二章--可行性分析
  4. LwIP应用开发笔记之八:LwIP无操作系统HTTP客户端
  5. Qt C++连接MySQL教程,解决QSqlDatabase:QMySQL driver not loaded
  6. java密钥长度受限制问题解决
  7. python中print说法正确的是_python中的print()输出
  8. GNU开发工具——Bochs模拟器
  9. ICMPV6协议及NDP协议
  10. 程序小白天天打卡(函数模板)
  11. 秦九韶算法如何应用到计算机,秦九韶算法
  12. 微机原理与接口技术[第三版]——第七章课后习题答案
  13. 密码忘了用计算机来打开,电脑开机密码忘了怎么办 用U盘修改登录密码方法
  14. maven创建eclipse wtp项目
  15. python获取股票的市盈率_如何利用python获取股票行情信息?
  16. .NetCore+EPPlus导出Excel报表
  17. google手机等相关产品{时间不同步}最简解决方法
  18. 机器学习电脑配置有什么要求?要什么显卡?
  19. python出现invalid syntax什么意思_关于Python出现invalid syntax的几种原因
  20. 微积分与概率论的基础知识

热门文章

  1. 确定数组是否包含值[重复]
  2. gridview绑定数据mysql_【gridview控件】怎么绑定数据库并显示?
  3. win11为什么比win10慢 Windows11比Win10慢的解决方法
  4. Win11玩永劫无间闪退怎么办?Win11玩永劫无间闪退的解决方法
  5. 简易新闻客户端android
  6. 麦克纳姆轮单轮速度分析
  7. 比较版本号大小c语言,比较两个版本字符串version1和version2
  8. 什么是AWT_Swing_Vector?居然这么高频使用
  9. PCL综合开发(一):Qt 5.14 + PCL 1.8.1 +VS 2017环境配置
  10. JavaScript:堆栈溢出内存泄漏