DeleteFolderRequest
Only users can use this method. See code examples.
---functions--- folders.deleteFolder#1c295881 folder_id:int = Updates
Returns
Updates |
This type can be an instance of either:
UpdateShort | UpdateShortChatMessage |
UpdateShortMessage | UpdateShortSentMessage |
Updates | UpdatesCombined |
UpdatesTooLong |
Parameters
folder_id | int |
Known RPC errors
This request can cause 1 known error:
FolderIdEmptyError | The folder you tried to delete was already empty. |
You can import these from telethon.errors
.
Example
Please refer to the documentation of client.edit_folder()
to learn about the parameters and see several code examples on how to use it.
The method above is the recommended way to do it. If you need more control over the parameters or want to learn how it is implemented, open the details by clicking on the "Details" text.
from telethon.sync import TelegramClient from telethon import functions, types with TelegramClient(name, api_id, api_hash) as client: result = client(functions.folders.DeleteFolderRequest( folder_id=42 )) print(result.stringify())