What is the best way to figure out the size of a file using MATLAB? The first thought that comes to mind is size(fread(fid)).
|
|
Please see the dir function as stated above. Please note that the dir function works on files and not on directories only.
|
||
|
|
|
You can use the DIR function to get directory information, which includes the sizes of the files in that directory. For example:
Or, since you are looking for only one file, you can do what Elazar said and just pass an absolute or relative path to your file to DIR:
|
||||
|
|
|
Use the fact that MatLab has access to Java Objects:
|
|||
|
|
