1
Feature Requests and Suggestions / Re: Refresh file info in a directory
« on: May 09, 2021, 18:57:00 »
Compile this:
Code: [Select]
#include <glob.h>
int main (void)
{
glob_t globbuf;
glob("*", GLOB_NOSORT, NULL, &globbuf);
return 0;
}
and link with standard Cygwin's DLL. Running resulting program in any directory does the trick. And I don't think that any hidden fopen() calls are involved.