![]() |
От: |
Su34
|
|
Дата: | 25.08.25 15:40 | ||
Оценка: |
void search(const char* mask)
{
_finddata_t fd;
_findfirst(mask, &fd);
}
void wsearch(const wchar_t* mask)
{
_wfinddata_t fd;
_wfindfirst(mask, &fd);
}
asearch("*.txt"); // выполняется search
asearch(L"*.txt"); // выполняется wsearch