Retrieves an embedded file from another file. Used in conjunction with EmbedFile.
Syntax: RetrieveFile (TargetFile As String)
This method creates a new file from the embedded file.
Example:
Sub App_Start
FileOpen(c1,"data.dat",cRandom)
bin.New1(c1,true)
bin.RetrieveFile("1.jpg")
bin.RetrieveFile("2.gif")
FileClose(c1)
End Sub