scan file from path with asterisk can include the separator: path* or path\*

This commit is contained in:
Basile Burg 2014-11-05 09:39:03 +01:00
parent 97589f0ecc
commit 5f9b16143e
1 changed files with 3 additions and 1 deletions

View File

@ -580,7 +580,9 @@ var
begin
if aPath[length(aPath)] = '*' then
begin
pth := aPath[1..length(aPath)-2];
pth := aPath[1..length(aPath)-1];
if pth[length(pth)] in ['/','\'] then
pth := pth[1..length(pth)-1];
if not directoryExists(pth) then exit(false);
//
files := TStringList.Create;