| 203 | |
| 204 | |
| 205 | bool WildFileExist(const wchar *Name) |
| 206 | { |
| 207 | if (IsWildcard(Name)) |
| 208 | { |
| 209 | FindFile Find; |
| 210 | Find.SetMask(Name); |
| 211 | FindData fd; |
| 212 | return Find.Next(&fd); |
| 213 | } |
| 214 | return FileExist(Name); |
| 215 | } |
| 216 | |
| 217 | |
| 218 | bool IsDir(uint Attr) |
no test coverage detected