SDL_GetStorageFileSize

Function SDL_GetStorageFileSize 

Source
pub unsafe extern "C" fn SDL_GetStorageFileSize(
    storage: *mut SDL_Storage,
    path: *const c_char,
    length: *mut Uint64,
) -> bool
Expand description

Query the size of a file within a storage container.

§Parameters

  • storage: a storage container to query.
  • path: the relative path of the file to query.
  • length: a pointer to be filled with the file’s length.

§Return value

Returns true if the file could be queried or false on failure; call SDL_GetError() for more information.

§Availability

This function is available since SDL 3.2.0.

§See also