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/FreeBASIC/truncate-a-file.basic
Normal file
20
Task/Truncate-a-file/FreeBASIC/truncate-a-file.basic
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
Sub truncateFile (archivo As String, longitud As Long)
|
||||
If Len(Dir(archivo)) Then
|
||||
Dim f As Long, c As String
|
||||
f = Freefile
|
||||
Open archivo For Binary As #f
|
||||
If longitud > Lof(f) Then
|
||||
Close #f
|
||||
Error 62 'Input past end of file
|
||||
Else
|
||||
c = Space(longitud)
|
||||
Get #f, 1, c
|
||||
Close f
|
||||
Open archivo For Output As #f
|
||||
Print #f, c;
|
||||
Close #f
|
||||
End If
|
||||
Else
|
||||
Error 53 'File not found
|
||||
End If
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue