本文介绍了你如何获得在MATLAB中的文件的大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用MATLAB计算文件大小的最佳方法是什么?首先想到的是 size(fread(fid))
。
解决方案
请参阅上述功能。请注意,dir函数只适用于文件,而不适用于目录。
>> s = dir('c:\\\\\')
s =
name:'try.c'
date:'01 -Feb-2008 10:45:43'
字节:20
isdir:0
datenum:7.3344e + 005
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.
>> s = dir('c:\try.c')
s =
name: 'try.c'
date: '01-Feb-2008 10:45:43'
bytes: 20
isdir: 0
datenum: 7.3344e+005
这篇关于你如何获得在MATLAB中的文件的大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!