ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Managing emails
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Deletes a folder on an IMAP server.
Example
// 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 the deletion was performed,
  • 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.
Component: wd290com.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help