RosettaCodeData/Task/File-size/Liberty-BASIC/file-size.basic

10 lines
212 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
'input.txt in current directory
OPEN DefaultDir$ + "/input.txt" FOR input AS #m
PRINT "File size: "; lof(#m)
CLOSE #m
'input.txt in root
OPEN "c:/input.txt" FOR input AS #m
PRINT "File size: "; lof(#m)
CLOSE #m