EsbDeleteLogFile() deletes an application log file on the server.
EsbDeleteLogFile (hCtx, AppName)
ByVal hCtx As Long ByVal AppName As String
hCtx | Essbase VB API context handle |
AppName | Application name. If AppName is NULL or "" (the empty string), EsbDeleteLogFile() deletes the essbase.log log file. |
Declare Function EsbDeleteLogFile Lib "ESBAPIW" (ByVal hCtx As Long, ByVal AppName As String) As Long Sub ESB_DeleteLogFile () Dim sts As Long Dim AppName As String AppName = "Sample" '**************** ' Delete Log file '**************** sts = EsbDeleteLogFile (hCtx, AppName) End SubEsbGetLogFile()