Error: No such file or directory

So, i have a function called 'MatrixPicture', which uses data that is PMHFIB_ORIGINAL.ATT. file. To open the .att file, I'm using a secondary function called 'Read_Att2'. However, when I call on the .att file, I get the message: "no such file or directory found."
Below, is my code for my MatrixPicture function that is calling on Read_Att2. How do I fix this issue? Read_Att2 is located in the folder on the desktop known as PHYS4115Mfiles, while PMHFIB_ORIGINAL.ATT is located in PHYS4115Tables on my desktop. I am on Mac Book air.
function [t,EIS] = MatrixPicture (min,max,m,n)
drive_name ='/Users/kira/desktop/';
addpath '/Users/kira/desktop/PHYS4115Mfiles';
filename ='C:\User\kira\desktop\PHYS4115Tables\att\PMHFIB_original.ATT';
%flux is temp variable
[E,mewfib]=Read_Att2([drive_name,'\PHYS4115Tables\att\PMHFIB_ORIGINAL.ATT']);

3 个评论

Two comments
  • you are mixing \ and / as file separator.
  • you use relative paths, thus the current directory is important.
/ never used a MacOS
MS Windows recognizes both \ and / as path separators, but Mac and Linux only recognize / as path separators and treat \ as the escape character sequence (for example \n would be "newline")
Either
addpath('/Users/kira/desktop/PHYS4115Mfiles'); % with blips
or
addpath /Users/kira/desktop/PHYS4115Mfiles % without blips

请先登录,再进行评论。

回答(2 个)

mervin Francis
mervin Francis 2020-4-30
编辑:per isakson 2020-4-30

0 个投票

1 个评论

As outside people who have never seen your computer, we have no reason to expect that a file with the exact name FracturesNoisy.mat is anywhere on your MATLAB path.
I suggest you
ls Fract*
to see what names are available in your current directory

请先登录,再进行评论。

Yandy
Yandy 2023-10-6

0 个投票

Hi guys.
If anyone has trouble saving a .mat file and keps seeing the error 'no such file or directory exists', please try the following:
on the matlab Home tab, under variables, you will see 'save worspace' and 'clear workspace'
click on save workspace, and then pick the name of your file.
Matlab will now recognise the file and folder, and you can do whatever you want to do with the said file later on.
if this works for you too, please let me know as I really struggled for days with this

类别

帮助中心File Exchange 中查找有关 Search Path 的更多信息

产品

版本

R2017b

提问:

2019-11-10

回答:

2023-10-6

Community Treasure Hunt

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

Start Hunting!

Translated by