如何为应用程序的 DLL 创建单独的文件夹?
我已成功地将一个大型 MFC 项目划分为几个较小的 DLL 项目。现在我想在我的应用程序文件夹中有一个名为“DLL”的单独文件夹,其中放置子项目中的所有 DLL。
有人可以指导我如何实现这一目标吗?
I have successfully divided a large MFC project into a couple of smaller DLL projects. Now I want to have a separate folder called "DLL" in my application's folder, where all the all the DLLs from the subprojects are placed.
Can anybody give me guidance in how to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果使用 LoadLibrary,则只需显式指定加载的 DLL 的完整路径即可。
如果 DLL 是隐式链接的,则可以通过两种方式来实现。
最好的解决方案是简单地将 DLL 放在与可执行文件相同的目录中。
If you use LoadLibrary, you simply have to explicitly specify the full path of the DLLs you load.
If the DLLs are implicitly linked, you can do this in two ways.
The best solution would be to simply put the DLLs in the same directory as the executable.
DLL 重定向是一项相当新的功能(
Windows 2000 IIRC)。将 DLL 目录命名为.exe.local
,Windows 将首先检查它是否有通过LoadLibrary(Ex)
加载的任何内容。这包括延迟加载的 DLL。DLL redirection is a fairly new feature (
Windows 2000 IIRC). Name your DLL directory<myapp>.exe.local
, and Windows will check it first for anything loaded viaLoadLibrary(Ex)
. This includes delay-loaded DLLs.编辑:正如埃里克所指出的,这是行不通的。抱歉。
请参阅动态链接库搜索顺序。简而言之,您可以使用“HKEY_LOCAL_MACHINE\SORTWARE\Microsoft\Windows\CurrentVersion\App Paths”项下的注册表项来执行此操作。
如下所示的 reg 文件显示了如何操作:
EDIT: As pointed out by Eric this doesn't work. Sorry.
See Dynamic-Link Library Search Order. In short you can do so using registry keys under the "HKEY_LOCAL_MACHINE\SORTWARE\Microsoft\Windows\CurrentVersion\App Paths" key.
A reg file like the following shows how: