| |
|
HBERemoveCurrentFileFromList |
HBE
specific commands |
|
| Syntax
HBERemoveCurrentFileFromList() |
|
| Description:
Removes a current file from the filelist. |
|
| Arguments:
Function has no arguments. |
|
| Examples:
REM Removes all files smaller than 100 bytes from a filelist
Curname = HBEFullPath()
If (FileSize(Curname) < 100)
HBERemoveCurrentFileFromList()
EndIf
|
|
| Return value:
A return value is irrelevant. Processing of script is terminated. |
|
| See also:
HBEDeleteCurrentFile |
|