DeleteAll

DeleteAll()

Purpose: Deletes all files in the configured save directory.

Parameters: None.

Return Value: Returns true if the deletion of the directory was successful, false otherwise.

Sample uses:

public void DeleteAll()
{
    bool result = SaveManager.DeleteAll();
}

Last updated