|

楼主 |
发表于 2007-11-3 11:55:18
|
显示全部楼层
你们不是给了这样一段代码么
const cGUID = '4B666B997C49446688B339B6D944AA5C';
begin
if not FileSys.FileSystem.FileExists(TRTLConsts.DocRoot) then //TRTLConsts在协同常量库
try
FileSys.FileSystem.CreateFile(TRTLConsts.DocRoot, cGUID, [], TFileKind.fkSpace, TRTLConsts.DocDisplayName);
except
on E: TObject do
raise Exception.CreateFmt('知识中心基础数据错误,初始化失败。'#13#10 + '错误原因:%s', [jsCommon.ExceptText(E)]);
else
raise;
end;
end;
我在发布的机器上再运行 是这个错误
|
|