static bool __cdecl IOFileExists()

in src/VSIXBootstrapper.Shared/VSIXBootstrapper.h [27:32]


    static bool __cdecl IOFileExists(_In_ LPCWSTR wszPath)
    {
        DWORD dwAttrib = ::GetFileAttributesW(wszPath);

        return dwAttrib != INVALID_FILE_ATTRIBUTES && !(dwAttrib & FILE_ATTRIBUTE_DIRECTORY);
    }