MATLAB: MATLAB equivalent to ls -l

listMATLAB

Hi, what is MATLAB equivalent to ls -l?

Best Answer

It depends on what you want from it. What exactly are you looking for?
D = dir
MAY give you much of what you may want, if you return
However, if you really, alsolutely need to see the output of ls -l, then just do
system('ls -l')
So there is no need for an equivalent thereof, just execute the system call itself.
Related Question