Filter löschen
Filter löschen

Error message concerning path

12 Ansichten (letzte 30 Tage)
Reuben Addison
Reuben Addison am 22 Mär. 2023
Beantwortet: Nithin Kumar am 1 Apr. 2023
I am trying to make a loop over several folders using a path for my function but when I test the code I get
subject_number = "45";
maindir = sprintf('/Users/Baso/Desktop/TMM/TMM%s/m2m_TMM%s', subject_number,subject_number);
part = sprintf('/TMM%s_tms_PH_simu', subject_number);
S.subpath = maindir;
S.subpath = fullfile(maindir, part);
I keep getting the error "TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType"
  3 Kommentare
Nithin Kumar
Nithin Kumar am 31 Mär. 2023
Bearbeitet: Nithin Kumar am 31 Mär. 2023
Hi Reuben,
I have executed the code that you have provided and it is working fine. I would like to know more details regarding the issue you are facing.
Stephen23
Stephen23 am 31 Mär. 2023
Bearbeitet: Stephen23 am 31 Mär. 2023
That is a Python error: it refers to Python's inbuilt "os" module:
and to Python's object type "NoneType":
You should be asking on a Python forum.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Nithin Kumar
Nithin Kumar am 1 Apr. 2023
Hi Reuben,
I understand that you are facing an issue while trying to loop over several folders using a path. The error message "Typeerror: stat: path should be string, bytes, os.pathlike or integer, not NoneType" occurs when you are trying to perform a file operation and the path that you have provided is not a valid path.
To resolve this error, you should check that the path you are providing is a valid file path. You can use the "exist" function to check if a file or folder exists. Kindly refer to the following link to go through the "exist" function.
You should also make sure that the path is formatted correctly and that you are using the correct file extension.
I hope this answer resolves the issue you are encountering.

Kategorien

Mehr zu Call Python from MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by