SDL_WriteStorageFile - Man Page

Synchronously write a file from client memory into a storage container.

Header File

Defined in SDL3/SDL_storage.h

Synopsis

#include "SDL3/SDL.h"

bool SDL_WriteStorageFile(SDL_Storage *storage, const char *path, const void *source, Uint64 length);

Function Parameters

storage

a storage container to write to.

path

the relative path of the file to write.

source

a client-provided buffer to write from.

length

the length of the source buffer.

Return Value

Returns true if the file was written or false on failure; call

SDL_GetError () for more information.

Availability

This function is available since SDL 3.2.0.

See Also

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

Referenced By

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

SDL 3.2.2 Simple Directmedia Layer SDL3 FUNCTIONS