VB6
'1/3
Private Function ReadFile(Filename As String) As String
Dim fileHandle As Long
fileHandle = FreeFile
Open Filename For Binary As #fileHandle
ReadFile = Space(LOF(fileHandle))
Get #fileHandle, 1, ReadFile
Close #fileHandle
End Function
'2/4
Private Sub WriteFile(InputData As String, Filename As String)
Dim fileHandle As Long
fileHandle = FreeFile
Open Filename For Binary As #fileHandle
Put #fileHandle, 1, InputData
Close #fileHandle
End Sub
Note that this won't work quite right for VB-formatted files made using standard VB i/o for strings, since VB adds quote and the like (well, it'll work but have the quotes and whatnot). However, really long strings tend to be much faster with this method. Also note that this is probably not a good idea with unicode (see here instead).
Edit: The following test may fail:
WriteFile tmpo, "c:\tmp\jox.dat"
jjj = ReadFile("c:\tmp\jox.dat")
if tmpo = jjj then
'pass
else
'fail
end if
Chaing the readfile code to use Open Filename For Input As #filehandle fixes some cases of failure, but also introduces new failure cases.
