ENDS THE ACTIONS FILE_FIND_FIRST$ AND FILE_FIND_NEXT$ ON THE CURRENT DIRECTORY
ACTION
The command FILE_FIND_CLOSE frees the resource used by the actions FILE_FIND_FIRST$ and FILE_FIND_NEXT$.
SYNTAX:
FILE_FIND_CLOSE
USE ERROR EXAMPLE
dim a$
print "content of the current directory :":print
print file_find_first$
a$=file_find_next$
while a$<>"_"
print a$
a$=file_find_next$
end_while
file_find_close
FILE_FIND_CLOSE
FILE_FIND_CLOSE
SEE ALSO
FILE_FIND_FIRST$
FILE_FIND_NEXT$