|
|
|
|
|
<emailIMAPSession variable>.RemoveFolder (Function) In french: <Variable emailSessionIMAP>.SupprimeDossier Deletes a folder on an IMAP server.
// IMAP protocol MySession is emailIMAPSession ... // Delete a folder from the current folder MySession.RemoveFolder(MySession.CurrentFolder() + "\Work") // Delete a folder from the custom folder MySession.RemoveFolder("Personal folders\Inbox\MyOwnWork")
Syntax
<Result> = <Session>.DeleteFolder(<Folder path>)
<Result>: Boolean - True if deleted successfully,
- False otherwise. If an error occurs, the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo with the errMessage constant.
<Session>: emailIMAPSession variable Name of the emailIMAPSession variable corresponding to the email session to use. <Folder path>: Unicode string Path of folder to delete.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|