KngStr před 4 roky
rodič
revize
9ad1e7ca04
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      Source/ksString.pas

+ 1 - 1
Source/ksString.pas

@@ -100,7 +100,7 @@ begin
   I := 0;
   sPath := ChangeFileExt(Result, '');
   sExt := ExtractFileExt(Result);
-  while FileExists(Result) do begin
+  while FileExists(Result) or DirectoryExists(Result) do begin
     Inc(I);
     Result := Format('%s(%d)%s', [sPath, I, sExt]);
   end;