隐藏使用system()命令显示的Cmd窗口。

时间:2010-02-22 14:19:01

标签: visual-c++

我在C ++ \ CLI应用程序中创建了一个用户界面,它使用C dll来操作exif文件。这个C dll使用system()函数打开cmd窗口和一个记事本文件进行编辑,当我们关闭记事本文件时,输入的数据被编辑为exif标题注释。现在我必须隐藏这个我用过“开始\ b”的cmd窗口,但这会关闭cmd窗口,这会导致编辑exif标头而不将数据输入到记事本文件中。 该功能的代码如下。

FILE * file;
int a;
char QuotedPath[PATH_MAX+10];

file = fopen(TempFileName, "w");
if (file == NULL)
 {
    fprintf(stderr, "Can't create file '%s'\n",TempFileName);
    ErrFatal("could not create temporary file");
 }
fwrite(Comment, CommentSize, 1, file);

fclose(file);


fflush(stdout); // So logs are contiguous.

 {
    char * Editor;
    Editor = getenv("EDITOR");
    if (Editor == NULL)
     {
       #ifdef _WIN32
         Editor = "notepad";
       #else
         Editor = "vi";
       #endif
    }

    if (strlen(Editor) > PATH_MAX) ErrFatal("env too long");

    sprintf(QuotedPath, "%s \"%s\"",Editor, TempFileName);

    a = system(QuotedPath);

}

if (a != 0)
 {
    char message[50]= "";
    strcpy(message, "Editor failed to launch");
    MessageBoxA(hWnd,message,"Error : ",MB_ICONWARNING);
    // perror("Editor failed to launch");
    exit(-1);
 }

if (hFileOpen != NULL)
 {
    file = fopen(TempFileName, "r");
    if (file == NULL)
     {
        ErrFatal("could not open temp file for read");
     }

    // Read the file back in.
    CommentSize = fread(Comment, 1, 999, file);

    fclose(file);

    unlink(TempFileName);

    return CommentSize;
}

1 个答案:

答案 0 :(得分:1)

最好的方法(以我的拙见)是使用shellexecuteEx来运行指定的exe,这将返回一个执行进程的句柄,然后你可以监视并关闭它。

注意:我认为您应该考虑重新格式化代码块