My Question is simple. How me know that the given file path, its extension is showed on Windows explorer or not, using boost filesystem library.
I know answer with Shell:
SHELLFLAGSTATE shellSettings = {0};
SHGetSettings(&shellSettings, SSF_SHOWEXTENSIONS);
bool isShowed = ((shellSettings.fShowExtensions == FALSE);
But with boost filesystem not. Thanks.