Merged revision(s) 49543 #8f7215b840 from trunk:

LazFileUtils: FileIsReadable on Windows should only return True if the file actually exists.
........

git-svn-id: branches/fixes_1_4@49558 -
This commit is contained in:
maxim 2015-07-19 11:38:11 +00:00
parent dfcd7440d2
commit 2e38b8eedd

View File

@ -1045,7 +1045,7 @@ end;
function FileIsReadable(const AFilename: string): boolean;
begin
Result:=true;
Result:=FileExistsUTF8(AFilename);
end;
function FileIsWritable(const AFilename: string): boolean;