由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Visual C++ 问题
相关主题
可执行程序问题面试问题C++ memory leakage
C++中如何数据文件一起build进exe文件中?一个VC++的问题
要写 Visual C 下的 DLL 东西问个C++的简单问题
请问一个visual studio的菜鸟问题Windows XP与Multithreading Programming
visual studio community 版和 profession 版不能共存?有必要学一学MFC吗?
问一个小程序python得一些初级问题
Windows Thread APIListing files under a directory in C++
C++的console程序,如何获取按键事件MATLAB编译的dll怎么被C#调用呢
相关话题的讨论汇总
话题: visual话题: c++话题: temp话题: exe话题: 路径
进入Programming版参与讨论
1 (共1页)
m**********e
发帖数: 19
1
在VC里, 有哪个function可以取得当前exe文件的路径?
eg: 我在c:\下运行 c:\temp\a.exe
当前路径是c:\, 怎么在a.exe里找到它自身所在的c:\temp这个目录呢?
多谢
o**o
发帖数: 3964
2
这个MSDN里面不会查不到把

【在 m**********e 的大作中提到】
: 在VC里, 有哪个function可以取得当前exe文件的路径?
: eg: 我在c:\下运行 c:\temp\a.exe
: 当前路径是c:\, 怎么在a.exe里找到它自身所在的c:\temp这个目录呢?
: 多谢

r******d
发帖数: 16
3
my guess:
this information is not necessary for a.exe to run,
but you may get it from argv[] or so, since the shell may
convey the command-line to the program(a.exe).

【在 m**********e 的大作中提到】
: 在VC里, 有哪个function可以取得当前exe文件的路径?
: eg: 我在c:\下运行 c:\temp\a.exe
: 当前路径是c:\, 怎么在a.exe里找到它自身所在的c:\temp这个目录呢?
: 多谢

o**o
发帖数: 3964
4
GetCommandLine() 然后稍微manipulate一下就得到目录了。

【在 r******d 的大作中提到】
: my guess:
: this information is not necessary for a.exe to run,
: but you may get it from argv[] or so, since the shell may
: convey the command-line to the program(a.exe).

J****r
发帖数: 274
5
GetModuleFileName, to get your exe file path - return c:\temp
GetCurrentDirectory, to get current process's current directory - return c:\

【在 m**********e 的大作中提到】
: 在VC里, 有哪个function可以取得当前exe文件的路径?
: eg: 我在c:\下运行 c:\temp\a.exe
: 当前路径是c:\, 怎么在a.exe里找到它自身所在的c:\temp这个目录呢?
: 多谢

1 (共1页)
进入Programming版参与讨论
相关主题
MATLAB编译的dll怎么被C#调用呢visual studio community 版和 profession 版不能共存?
[求助] 哪位有Excel Macro VBA 教程一类的电子书啊 问一个小程序python得
COM本质论调用DLL里面构造函数的一点不解Windows Thread API
做个调查 大家掌握几种编程语言C++的console程序,如何获取按键事件
可执行程序问题面试问题C++ memory leakage
C++中如何数据文件一起build进exe文件中?一个VC++的问题
要写 Visual C 下的 DLL 东西问个C++的简单问题
请问一个visual studio的菜鸟问题Windows XP与Multithreading Programming
相关话题的讨论汇总
话题: visual话题: c++话题: temp话题: exe话题: 路径