Function SDL_GetStoragePathInfo
pub unsafe extern "C" fn SDL_GetStoragePathInfo(
storage: *mut SDL_Storage,
path: *const i8,
info: *mut SDL_PathInfo,
) -> bool
Available on crate feature
dep_sdl3
only.Expand description
Get information about a filesystem path in a storage container.
§Parameters
storage
: a storage container.path
: the path to query.info
: a pointer filled in with information about the path, or NULL to check for the existence of a file.
§Return value
Returns true on success or false if the file doesn’t exist, or another
failure; call SDL_GetError()
for more information.
§Availability
This function is available since SDL 3.2.0.