The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > High Level Programming
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 03-11-2008
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,748
One note: there is the concept of a large file. These are files that exceed the capacity of the number of bytes a 32 bit file pointer can access. i.e., more than ~4.2GB of data.

This depends on your OS and sometimes the filesystems. If there is a problem with large files the fopen man page may mention how to deal with them. Frequently there is a call - maybe named like "fopen64" - that deals with largefiles. Check your man pages.