Function SDL_GetStorageFileSize

pub unsafe extern "C" fn SDL_GetStorageFileSize(
    storage: *mut SDL_Storage,
    path: *const i8,
    length: *mut u64,
) -> bool
Available on crate feature dep_sdl3 only.
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