Hi: I am trying to load a headerless binary file into memory (92160 K) , then preattach a header to it, basically load inn an xfs file as binary then write it back out as binary as an atr file. The code I am using in the above section does not work. All I get is spaces.
Russ
Title: Re: Trying to load an Atari disk image into memory
Post by: SMcNeill on January 19, 2022, 09:06:09 am
Open "KWEST01B.XFD" For Binary As #1 Get #1, , temp$ 'get the whole array
The problem is with the above -- temp$ is a blank 0 byte string of "" by default, so you're getting 0 bytes from your file.
Open "KWEST01B.XFD" For Binary As #1 temp$ = SPACE$(LOF(1)) 'set temp$ to be the size of the file, if you want to get the whole thing at once. Get #1, , temp$ 'get the whole array
Title: Re: Trying to load an Atari disk image into memory
Post by: Cobalt on January 19, 2022, 10:54:48 am
Just what do you have myarray() DIMed as anyhow? why not just GET #1,, myarray()? If you know the file size anyway?(and even if you don't you still could)
PS, just out of curiosity, do you realize just how big "myarray(1 To 92176) As String * 92176" that array is? 8,496,414,976 bytes!!! do you really need 8gigs+ to load it?
Title: Re: Trying to load an Atari disk image into memory
Post by: tomxp411 on January 22, 2022, 02:50:46 am
Ok, let's start with: you don't need TEMP$ or the array. You definitely do not want an array of string*92126 objects. That gives you 92126*92126 characters, which is over 8GB.
You should be able to load data straight into a string*, like this: