Ich will nicht IN einen Specialfolder installieren.
Ich will verhindern das jemand einen Ordner angibt der ein Specialfolder ist. Insbesondere die WOW64 File System Redirection macht das recht schwer.
Ich habe jetzt folgende Lösung aus dem Guide den du Verlinkts hast zusammen gestrickt.
Delphi-Quellcode:
Function CheckForProgramFilesPath(aPath:String):Boolean;
var Ppath:String;
i:integer;
const PathVariable:Array[0..5] of string=(
'%ProgramFiles%',
'%ProgramFiles(x86)%',
'%ProgramW6432%',
'%CommonProgramFiles%',
'%CommonProgramW6432%',
'%CommonProgramFiles(x86)%'
);
function ExpandEnvStr(const szInput: string): string;
var szBuf:String;
r : Cardinal;
begin
result := '';
try
r := ExpandEnvironmentStrings(pChar(szInput), nil, 0);
if r > 0 then
Begin
SetLength(szBuf, r);
ExpandEnvironmentStrings(pChar(szInput), PChar(szBuf), r);
result := PChar(szBuf);
End;
except
Result := '';
end;
end;
{
Function UnExpandEnvPath(const szPath: string):String;
var szBuf:String;
cchBuf:Cardinal;
Begin
setLength(szBuf, MAX_PATH);
cchBuf := MAX_PATH;
if PathUnExpandEnvStrings( Pchar(szPath),@szBuf[1],cchBuf) then
Result := Pchar(szBuf)
else
Result := szPath;
End;
}
Function TestPath(ReferencePath,aTestPath:String):Boolean;
Begin
Result := (ReferencePath <> '') and
(length(atestPath) > length(ReferencePath)) and
(Ansipos(ReferencePath,aTestPath) = 1);
End;
Begin
result := false;
aPath := ExpandUNCFileName(aPath);
for I := 0 to 5 do
Begin
PPath := ExpandEnvStr(PathVariable[i]);
if TestPath(PPath,aPath) then
begin
Result := true;
exit;
end;
End;
End;
Nur weiß ich nicht ob das funktioniert.