Why can't I open a file on MacBook?

21 次查看(过去 30 天)
Hi!
I've tried to run this code and open a file on macbook but here's still this an error.
When I used this code on Windows, it used to work.
Does anyone knows why?
path = '/Users/martine/Desktop/projekt/csv/Stop Signal'
folder = dir('*.csv')
x = folder(1).name
Error is:
Index exceeds the number of array elements (0).

采纳的回答

Steven Lord
Steven Lord 2021-11-17
I recommend not creating a variable named path, as path already has a meaning in MATLAB. See doc path for more information on that function.
Just because you define a variable named path does not mean that functions like dir will automatically look there. I recommend you use fullfile to assemble the path to the folder and the extension you want to search for.
location = fullfile(matlabroot, 'toolbox', 'matlab', 'general')
location = '/MATLAB/toolbox/matlab/general'
filespec = 'bench*';
D = dir(fullfile(location, filespec))
D = 2×1 struct array with fields:
name folder date bytes isdir datenum
{D.name}.'
ans = 2×1 cell array
{'bench.dat'} {'bench.m' }
If I'd just asked for the file using the filespec it wouldn't have looked in that directory and so wouldn't have found any such files.
D2 = dir(filespec)
D2 = 0×1 empty struct array with fields: name folder date bytes isdir datenum

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by