码迷,mamicode.com
首页 > 系统相关 > 详细

使用ShellExecute打开文件夹并选中文件

时间:2015-07-30 19:03:33      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:

 

原文链接: http://futurecode.is-programmer.com/posts/24780.html

假设在C:\目录下存在文件a.txt。

打开这个目录是ShellExecute的常用功能,代码如下:

ShellExecute(NULL, "open", "explorer.exe", "C:\\", NULL, SW_SHOWNORMAL);

要在此基础上增加“选中文件”功能(这是很多下载工具和格式转换工具提供的常用功能),只需要将上面目录的名称换成文件的名称,并在前面加上"/select,":

ShellExecute(NULL, "open", "explorer.exe", "/select,C:\\a.txt", NULL, SW_SHOWNORMAL);

 

使用ShellExecute打开文件夹并选中文件

标签:

原文地址:http://www.cnblogs.com/huhu0013/p/4689813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!