“无法打开输出文件filename.exe:权限被拒绝”

时间:2014-05-30 01:00:39

标签: c++ makefile dev-c++

我刚刚学习了C ++,我正在尝试使用windows.h标头创建一个程序。我正在使用Dev-C ++编译器,我得到三个错误,我无法找到解决方案。

这些是错误:

  

无法打开输出文件filename.exe:权限被拒绝
  [错误] ld返回1退出状态   目标'filename.exe'的配方失败

这是我的代码:

#include &#60windows.h&$62
#include &#60iostream&#62
#include &#60fstream&#62
#include &#60string&#62
#include &#60vector&#62
using namespace std;

HWND textfield;
/* This is where all the input to the window goes to */
LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) {
switch(Message) {
    case WM_CREATE:

            CreateWindow("STATIC",
            "DocJoin Document Combiner",
            WS_VISIBLE | WS_CHILD | WS_BORDER,
            20,20,300,25,
            hwnd,NULL,NULL,NULL);
            break;

    /* Upon destruction, tell the main thread to stop */
    case WM_DESTROY: {
        PostQuitMessage(0);
        break;
    }

    /* All other messages (a lot of them) are processed using default procedures */
    default:
        return DefWindowProc(hwnd, Message, wParam, lParam);
}
return 0;
}

/* The 'main' function of Win32 GUI programs: this is where execution starts */
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int     nCmdShow) {
WNDCLASSEX wc; /* A properties struct of our window */
HWND hwnd; /* A 'HANDLE', hence the H, or a pointer to our window */
MSG Msg; /* A temporary location for all messages */

/* zero out the struct and set the stuff we want to modify */
memset(&wc,0,sizeof(wc));
wc.cbSize        = sizeof(WNDCLASSEX);
wc.lpfnWndProc   = WndProc; /* This is where we will send messages to */
wc.hInstance     = hInstance;
wc.hCursor       = LoadCursor(NULL, IDC_ARROW);

/* White, COLOR_WINDOW is just a #define for a system color, try Ctrl+Clicking it */
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wc.lpszClassName = "WindowClass";
wc.hIcon         = LoadIcon(NULL, IDI_APPLICATION); /* Load a standard icon */
wc.hIconSm       = LoadIcon(NULL, IDI_APPLICATION); /* use the name "A" to use the project icon */

if(!RegisterClassEx(&wc)) {
    MessageBox(NULL, "Window Registration Failed!","Error!",MB_ICONEXCLAMATION|MB_OK);
    return 0;
}

hwnd = CreateWindowEx(WS_EX_CLIENTEDGE,"WindowClass","DocJoin",WS_VISIBLE|WS_OVERLAPPEDWINDOW,
    CW_USEDEFAULT, /* x */
    CW_USEDEFAULT, /* y */
    683, /* width */
    730, /* height */
    NULL,NULL,hInstance,NULL);

if(hwnd == NULL) {
    MessageBox(NULL, "Window Creation Failed!","Error!",MB_ICONEXCLAMATION|MB_OK);
    return 0;
}

/*
    This is the heart of our program where all input is processed and 
    sent to WndProc. Note that GetMessage blocks code flow until it receives something, so
    this loop will not produce unreasonably high CPU usage
*/
while(GetMessage(&Msg, NULL, 0, 0) > 0) { /* If no error is received... */
    TranslateMessage(&Msg); /* Translate key codes to chars if present */
    DispatchMessage(&Msg); /* Send it to WndProc */
}
return Msg.wParam;

}

这是Makefile.win:

# Project: ProjectName

# Makefile created by Dev-C++ 5.6.3

CPP      = g++.exe
CC       = gcc.exe
WINDRES  = windres.exe
OBJ      = main.o
LINKOBJ  = main.o
LIBS     = -L"[...]" -L"[...]" -static-libgcc -mwindows -g3
INCS     = -I"[...]" -I"[...]" -I"[...]"
CXXINCS  = -I"[..]" -I"[...]" -I"[...]" -I"[...]"
BIN      = filename.exe
CXXFLAGS = $(CXXINCS) -g3
CFLAGS   = $(INCS) -g3
RM       = rm.exe -f

.PHONY: all all-before all-after clean clean-custom

all: all-before $(BIN) all-after

clean: clean-custom
${RM} $(OBJ) $(BIN)

$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)

main.o: main.cpp
$(CPP) -c main.cpp -o main.o $(CXXFLAGS)

我花了3个小时做研究和故障排除,我只是难倒。 这是我第一次使用C ++编译器,这意味着它是我的第一个程序。

4 个答案:

答案 0 :(得分:2)

您必须更改文件位置。

注意:请勿将文件保存在Program Files& Microsoft Windows中的Program Files (x86)

您可以使用其他路径,例如C:\USER\.....

答案 1 :(得分:1)

链接器无法删除现有文件filename.exe

  1. 检查"文件名"进程当前没有运行。
  2. 检查权限
  3. 尝试手动删除/重命名
  4. 就编译器而言,源代码中没有错误。

    如果可以的话,如果这是您的第一个程序(尤其是避免使用GUI并转到控制台应用程序),则应该从更简单的应用程序开始。

答案 2 :(得分:0)

我有几个月同样的问题。我尝试了列出的所有解决方案,但无济于事。今天我找到了一个适合我的解决方案,我想分享。

1 - 卸载Dev-C ++。

2 - 运行regedit,找到“orwell”,“devcpp”,“dev - ++”,“bloodshed”,删除每条记录。

3 - 运行Wise Registry Cleaner,扫描,清理,碎片整理注册表(此步骤可能过度使用)

4 - 删除程序文件夹“C:\ Program Files(x86)\ Dev-Cpp”或其他。

5 - 从Orwell下载最新版本的Dev-C ++。

6 - 一直安装,默认选项。

这就是诀窍。我很高兴。

答案 3 :(得分:-2)

将文件保存在任何其他文件夹中,如下所示

C:\Users\dhanya\Documents