MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / WildFileExist

Function WildFileExist

Libraries/unrar/filefn.cpp:205–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

203
204
205bool 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
218bool IsDir(uint Attr)

Callers 1

GetConfigNameFunction · 0.85

Calls 4

IsWildcardFunction · 0.85
FileExistFunction · 0.85
SetMaskMethod · 0.80
NextMethod · 0.80

Tested by

no test coverage detected