AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Gestión de correos electrónicos
  • For an Outlook server
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 from the Outlook messaging software.
Example
WINDEVWEBDEV - Server code
// Start the Outlook session
SessionID is emailOutlookSession
...
// Delete a folder
SessionID.RemoveFolder("Personal folders\Inbox\Work")
// Delete a folder from the current folder
SessionID.RemoveFolder(SessionID.CurrentFolder() + "\Work")
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>: emailOutlookSession variable
Name of the emailOutlookSession variable corresponding to the email session to use.
<Folder path>: Unicode string
Path of folder to delete.
Remarks
WINDEVWEBDEV - Server code

For an Outlook server

The folder must be found in the "Personal folders" branch.
During the call to <emailOutlookSession variable>.RemoveFolder, the following operations are automatically performed:
  • the messages found in the folder to delete are moved into the bin ("Deleted elements" folder).
  • the sub-folders of the folder to delete as well as their content are moved into the bin ("Deleted elements" folder).
  • the folder to delete is permanently deleted.
If the folder to delete is already found in the bin, the folder and its content are permanently deleted.
Reminder: This function cannot be used to delete a folder from the Outlook Express messaging software.
Component: wd290com.dll
Versión mínima requerida
  • Versión 24
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local