sdlGetPathInfo function
Get information about a filesystem path.
\param path the path to query. \param info a pointer filled in with information about the path, or NULL to check for the existence of a file. \returns true on success or false if the file doesn't exist, or another failure; call SDL_GetError() for more information.
\since This function is available since SDL 3.1.3.
extern SDL_DECLSPEC bool SDLCALL SDL_GetPathInfo(const char *path, SDL_PathInfo *info)
Implementation
bool sdlGetPathInfo(String? path, Pointer<SdlPathInfo> info) {
final sdlGetPathInfoLookupFunction = libSdl3.lookupFunction<
Uint8 Function(Pointer<Utf8> path, Pointer<SdlPathInfo> info),
int Function(
Pointer<Utf8> path, Pointer<SdlPathInfo> info)>('SDL_GetPathInfo');
final pathPointer = path != null ? path.toNativeUtf8() : nullptr;
final result = sdlGetPathInfoLookupFunction(pathPointer, info) == 1;
calloc.free(pathPointer);
return result;
}