lof()
ファイルのバイト数を返す。
書式:
lof(
stream
)
stream
オープンコマンド
で指定された番号
例:
open "myfile.txt" for input as 1
prints( "the lenght of file \"myfile.txt\" is:"+str$(
lof(
1
)
) )
close 1
waitKey