我正在使用此代码(Delphi 7)在win7下检索用户的cookies文件夹。
function MyCookieDir : string;
begin
result := '';
if Win32MajorVersion >= 6 then
result := GetKnownFolderPath(FOLDERID_Cookies, 0, 0);
end;
在某些 PC 上,该函数返回一个空字符串。为什么 ?
非常感谢
我正在使用此代码(Delphi 7)在win7下检索用户的cookies文件夹。
function MyCookieDir : string;
begin
result := '';
if Win32MajorVersion >= 6 then
result := GetKnownFolderPath(FOLDERID_Cookies, 0, 0);
end;
在某些 PC 上,该函数返回一个空字符串。为什么 ?
非常感谢