Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
20
Task/Truncate-a-file/BASIC/truncate-a-file.basic
Normal file
20
Task/Truncate-a-file/BASIC/truncate-a-file.basic
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
SUB truncateFile (file AS STRING, length AS LONG)
|
||||
IF LEN(DIR$(file)) THEN
|
||||
DIM f AS LONG, c AS STRING
|
||||
f = FREEFILE
|
||||
OPEN file FOR BINARY AS f
|
||||
IF length > LOF(f) THEN
|
||||
CLOSE f
|
||||
ERROR 62 'Input past end of file
|
||||
ELSE
|
||||
c = SPACE$(length)
|
||||
GET #f, 1, c
|
||||
CLOSE f
|
||||
OPEN file FOR OUTPUT AS f
|
||||
PRINT #f, c;
|
||||
CLOSE f
|
||||
END IF
|
||||
ELSE
|
||||
ERROR 53
|
||||
END IF
|
||||
END SUB
|
||||
Loading…
Add table
Add a link
Reference in a new issue