Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
' FB 1.05.0 Win64
|
||||
|
||||
'capture the output of the 'dir' command and print it to a text file
|
||||
|
||||
Open "dir_output.txt" For Output As #1
|
||||
Open Pipe "dir" For Input As #2
|
||||
Dim li As String
|
||||
|
||||
While Not Eof(2)
|
||||
Line Input #2, li
|
||||
Print #1, li
|
||||
Wend
|
||||
|
||||
Close #2
|
||||
Close #1
|
||||
End
|
||||
Loading…
Add table
Add a link
Reference in a new issue