Error message concerning path

16 vues (au cours des 30 derniers jours)
Reuben Addison
Reuben Addison le 22 Mar 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 commentaires
Nithin Kumar
Nithin Kumar le 31 Mar 2023
Modifié(e) : Nithin Kumar le 31 Mar 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 le 31 Mar 2023
Modifié(e) : Stephen23 le 31 Mar 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.

Connectez-vous pour commenter.

Réponses (1)

Nithin Kumar
Nithin Kumar le 1 Avr 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.

Catégories

En savoir plus sur Call Python from MATLAB dans Help Center et File Exchange

Tags

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by