0

我开发了一个用于 Internet Explorer 的 MFC ActiveX 控件。此控件在硬盘驱动器上创建文件。我已经在 Windows 7(32 位)上安装了控件。如果我以管理员身份运行 IE,控件会按预期创建文件。但是,如果我在 UAC 开启的情况下以普通用户身份运行 IE,则控件不会创建任何文件。

下面是创建文件的代码:

int WriteDataToFile()
{
    CString Data;
    int DataLength;
    CString FilePath;
    std::ofstream File;

    // Set Data, DataLength and FilePath

    try
    {
        File.open(FilePath, std::ios::binary | std::ios::out);

        if (TRUE == File.fail())
        {
            return ERROR;
        }

        File.write((const char *)Data.GetBuffer(), DataLength);

        if (TRUE == File.bad())
        {
            File.close();

            return ERROR;
        }

        File.close();
    }
    catch (...)
    {
        return ERROR;
    }

    return SUCCESS;
}

SUCCESS如果程序以管理员或普通用户身份运行,则该函数返回。为什么程序不为普通用户创建文件?

非常感谢您提供的任何帮助。

4

1 回答 1

0

您的程序将文件写入哪个文件夹?文件夹,如系统驱动程序中的“程序文件”,受Windows7保护,不允许为普通用户创建新文件。

也许您应该将文件写入某些不受 Windows7 保护的文件夹。

于 2012-11-22T13:23:28.230 回答