Thanks for the reply,
That would kind of work, but ultimately, I need a graph that
contains the entire file. In other words, I need to convert the binary
file to a wave file that I can view as a graph. If I only open one
half, then I would only see the graph from that first half, which is
not useful to the project. I need to view the wave file in its
entirety as a waveform graph, so is there any way to add the data from
the second half of the file to the first half?
I guess it comes down to the memory buffer size, right? Labview tries
to load the entire file onto the RAM, but I need it to load a portion
onto the RAM, save that portion on the hard drive, load a second
portion onto the RAM, and add that portion to the first portion on the
hard drive, and so forth.
Is there any function in labview that can do this? Or can I only
manipulate data using the RAM, and not the hard drive?
Thanks for any and all help!
Jennings
JLS wrote:
> Hello,
>
> From your previous post, it sounds like you're able to open and read from the file - can you try reading half (the get file size function will be helpful) and immediately writing that half to another file? If this works, you can try the same thing with the second half using the set file position function. You could repeat this process until you had files which were of manageable size for your application/processing needs.
>
> I hope this helps!
>
> Best Regards,
>
> JLS