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

ShellExecuteA加载exe文件指定工作目录找不到文件的问题

时间:2014-11-21 18:11:14      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   使用   sp   for   文件   

 

使用ShellExecuteA调用exe文件时,指定工作目录需要注意

函数原型为:

HINSTANCE ShellExecuteA(
HWND hwnd, LPCTSTR lpOperation, LPCTSTR lpFile, LPCTSTR lpParameters, LPCTSTR lpDirectory, INT nShowCmd );

MSDN中对lpDirectory是这样说明的:

[in] A pointer to a null-terminated string that specifies the default (working) directory for the action. If this value is NULL, the current working directory is used. If a relative path is provided at lpFile, do not use a relative path for lpDirectory.

注意最后一句:如果lpFile提供的是相对路径,则lpDirectory不能使用相对路径。

咋看这句还以为是:如果lpFile提供了相对路径,lpDirectory可以使用绝对路径,可是实验却不是如此。

下面用程序举列:目录为C:\\temp

a文件夹里放置被调程序a.exe,a.exe运行会显示所在的目录路径,如:

bubuko.com,布布扣

下面用四种情况验证:

bubuko.com,布布扣

 

1、test1.exe

使用相对路径加载a\\a.exe,并指定了a.exe的工作目录

使用的代码:

char* workDir = "C:\\temp\\a\\";
	HINSTANCE ret;

	//使用相对路径,指定工作目录:文件找不到
	ret = ShellExecuteA(NULL, "open", "a\\a.exe", NULL, workDir, SW_SHOWNORMAL);
	if ((int)ret == ERROR_FILE_NOT_FOUND)
	{
		std::cout << "使用相对路径,指定工作目录:文件找不到" << std::endl;
	}

如果是:提示文件找不到。

bubuko.com,布布扣

2、test2.exe

使用相对路径加载a\\a.exe,不指定a.exe的工作目录

使用的代码:

char* workDir = "C:\\temp\\a\\";
	HINSTANCE ret;

	//使用相对路径,未指定工作目录:文件加载正常
	//a.exe的工作目录为 "C:\\temp\\"
    ret = ShellExecuteA(NULL, "open", "a\\a.exe", NULL, NULL, SW_SHOWNORMAL);

结果,a.exe可以正常加载,但a.exe显示的工作目录为 C:\\temp

bubuko.com,布布扣

 

3、test3.exe

使用相对路径加载a\\a.exe,不指定a.exe的工作目录

使用的代码:

	char* workDir = "C:\\temp\\a\\";
	HINSTANCE ret;
 	//使用绝对路径,未指定工作目录:文件加载正常
	//a.exe的工作目录为 "C:\\temp\\"
	ret = ShellExecuteA(NULL, "open", "C:\\temp\\a\\a.exe", NULL, NULL, SW_SHOWNORMAL);

结果,a.exe可以正常加载,但a.exe显示的工作目录为 C:\\temp ,与第二种情况一样

bubuko.com,布布扣

 

 

4、test4.exe

使用绝对路径加载 a\\a.exe,同时指定a.exe的工作目录

使用的代码:

char* workDir = "C:\\temp\\a\\";
	HINSTANCE ret;
// 	//使用绝对路径,指定工作目录:文件加载正常
// 	//a.exe的工作目录为 "C:\\temp\\a\\"
 	ret = ShellExecuteA(NULL, "open", "C:\\temp\\a\\a.exe", NULL, workDir, SW_SHOWNORMAL);

结果,a.exe可以正常加载,但a.exe显示的工作目录为 C:\\temp\\a

bubuko.com,布布扣

 

总结:使用ShellExecuteA调用exe文件时,如果需要指定被调程序的工作目录,exe文件的路径尽量使用绝对路径

ShellExecuteA加载exe文件指定工作目录找不到文件的问题

标签:style   blog   http   io   ar   使用   sp   for   文件   

原文地址:http://www.cnblogs.com/imzhstar/p/4113319.html

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