vote up 2 vote down star
1

Is there any way to figure out the length of a .dat file (in terms of rows) without loading the file into the workspace?

flag
How are "rows" defined for this file format? Is it a text file with one row per line, terminated by \n? Or fixed-length binary records? Or something else? – Andrew Janke Jun 5 at 17:15

2 Answers

vote up 7 vote down

I'm assuming you are working with text files, since you mentioned finding the number of rows. Here's one solution:

fid = fopen('your_file.dat','rt');
nLines = 0;
while (fgets(fid) ~= -1),
  nLines = nLines+1;
end
fclose(fid);

This uses FGETS to read each line, counting the number of lines it reads. Note that the data from the file is never saved to the workspace, it is simply used in the conditional check for the while loop.

link|flag
vote up 1 vote down

It's also worth bearing in mind that you can use your file system's in-built commands, so on linux you could use the command

[s,w] = system('wc -l your_file.dat');

and then get the number of lines from the returned text (which is stored in w). (I don't think there's an equivalent command under Windows.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.