CLOSE
CLOSE #fileN
Close a file or device with file-handle #fileN
.
See OPEN for more information on how to read or write files.
Example
' create a text file
open "MyDemoFile.txt" for output as #1
for i = 1 to 10
print #1, i
next
close #1
' open text file and print content line by line
open "MyDemoFile.txt" for input as #1
while(!eof(1)) ' eof works only without #
input #1, c
print c
wend
close #1
Code samples using CLOSE
000 hello.bas
002 numeric variables.bas
3d_palmx.bas
4tune.bas
7gables.bas
agendus.bas
ai.bas
anomail.bas
base64.bas
betrayal: crows ii.bas
blackjack.bas
BlackJack.bas
cgi_counter.bas
chess.bas
chess.bas
ciretose.bas
coordplot.bas
counter.bas
demanda.bas
dmsareaplot.bas
dmsareareadmd.bas
dogstar5.bas
duckduckgo.bas
esoteric.bas
fiftyfifty v2.bas
filemanager.bas
form demo.bas
g2 Life.bas
g3 Life.bas
File
ACCESS
BGETC
BLOAD
BPUTC
BSAVE
CHDIR
CHMOD
CLOSE
COPY
DIRWALK
EOF
EXIST
FILES
FREEFILE
INPUT
INPUT
KILL
LOCK
LOF
MKDIR
OPEN
READ
RENAME
RMDIR
SEEK
SEEK
TLOAD
TSAVE
WRITE
If there is insufficient information on this page and you wish learn more about CLOSE,
please send an email to smallbasic@gmail.com. You can help to improve information about
CLOSE by submitting a pull request,
click View Source for details. Note, an offline language reference text file is also available - see the Download section.