我正在使用此代码(Delphi 7)在win7下检索用户的cookie文件夹。
function MyCookieDir : string;
begin
result := '';
if Win32MajorVersion >= 6 then
result := GetKnownFolderPath(FOLDERID_Cookies, 0, 0);
end;
在某些PC上,该函数返回一个空字符串。为什么?
非常感谢
答案 0 :(得分:0)
通过以下方式解决问题:
感谢雷米和大卫