Index: FindInFiles.cpp =================================================================== --- FindInFiles.cpp (wersja 9714) +++ FindInFiles.cpp (kopia robocza) @@ -209,8 +209,11 @@ String packname = wspc[p]; const Package& pack = wspc.GetPackage(p); for(int f = 0; f < pack.file.GetCount(); f++) { - String fn = pack.file[f]; - if(ToUpper(packname).Find(mask) >= 0 || ToUpper(fn).Find(mask) >= 0) + const Package::File& file = pack.file[f]; + if(file.separator) + continue; + + if(ToUpper(packname).Find(mask) >= 0 || ToUpper(file).Find(mask) >= 0) ffdlg.list.Add(packname, pack.file[f]); } }