www.lucersoft.com
Main
Home
Products
LC Copier
HTML Batch Editor
HTML Batch Editor PRO
Freeware
Documentation
LC Basic
Information
Order
Update Policy
Support
Contacts
Links
HBE specific commands
Syntax
HBEDeleteCurrentFile()
Description:
HBEDeleteCurrentFile performs three operations in time.
1. Deletes a current processed file.
2. Removes a current file from the filelist.
3. Escapes from script. Next file is processed.
Arguments:
Function has no arguments.
Examples:
REM Deletes all files smaller than 100 bytes Curname = HBEFullPath() If (FileSize(Curname) < 100) HBEDeleteCurrentFile() EndIf
Return value:
A return value is irrelevant. Processing of script is terminated.
See also:
HBERemoveCurrentFileFromList, HBENextFile
Back