0

我想在我的系统中安装一种新字体,但我的代码有问题,我找不到我犯了什么错误。在我调用 CopyFile 后,该文件不存在于 C:\Windows\Fonts.Can你给我一些建议?谢谢。这是我的代码:

`//the source file
string sSourceDir = "F:\\my_job\\font\\";
//the file name
string sFontFileName = "jdqw.TTF";
string sFontName = "jdqw";
TCHAR sWinDir[MAX_PATH];

GetWindowsDirectory(sWinDir, MAX_PATH);

string sFontDir(sWinDir);
//make the path like C:\\Windows\\Fonts
sFontDir += "\\Fonts\\";
string sFOTFile = sFontDir;
sFOTFile += sFontFileName.substr(0, sFontFileName.length() - 4);
sFOTFile += ".FOT";
string source = sSourceDir;
string dest = sFontDir;
source += sFontFileName;
dest += sFontFileName;

//copy file
cout << source.c_str() << "   " << dest.c_str() << endl;
cout << CopyFile(source.c_str(), dest.c_str(), FALSE) << endl;
cout << GetLastError() << endl;`
4

1 回答 1

1

Michael Kaplan有一个很好的描述。简而言之,您不能也不应该在那里复制文件,因为它是一个虚拟视图。相反,使用适当的方法:调用AddFontResourceEx,传递适当的标志。如果字体在系统范围内可用,则广播WM_FONTCHANGE. 要永久安装字体,您需要管理员权限(即 UAC 提升),因为您需要在HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts.

您可能需要考虑从您的安装程序中执行这些步骤,因为这通常以必要的权限运行。

于 2013-08-12T09:05:56.600 回答