LabVIEW cannot handle files lerger than 2GB. This is becuase LabVIEW represents a file size in bytes with a 32 bit integer. So, the maximum file size you can get is ~2GB. Win95/98 has this same constraint. However, I believe WinNT represents file sizes with an I64 (probably 2 I32's together), allowing you to have much larger file sizes (~1TB). Unfortunately, LabVIEW still has the I32 representation for the file size, which still limits you to a 2GB file size even though WinNT can handle larger sizes.
How Can I Get LabVIEW to Read My Data File That is Greater Than 2 GB in Size?If you operate on a system which can handle larger files and need to read a file
larger than 2GB, you can split up your data file using several free utilities that are available on the web. You can then use LabVIEW to read those smaller files. A good site to go to is: http://www.webattack.com/Freeware/downloader/fwfilesplit.shtml
Zvezdana S.