SDL_GetStorageFileSize - Man Page

Query the size of a file within a storage container.

Header File

Defined in SDL3/SDL_storage.h

Synopsis

#include "SDL3/SDL.h"

bool SDL_GetStorageFileSize(SDL_Storage *storage, const char *path, Uint64 *length);

Function 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

·(3), SDL_ReadStorageFile(3), ·(3), SDL_StorageReady(3)

Referenced By

SDL_OpenFileStorage(3), SDL_OpenStorage(3), SDL_OpenTitleStorage(3), SDL_OpenUserStorage(3), SDL_ReadStorageFile(3).

SDL 3.2.2 Simple Directmedia Layer SDL3 FUNCTIONS