👻 Check our latest review to choose the best laptop for Machine Learning engineers and Deep learning tasks!
We are working with a code repository which is deployed to both Windows and Linux - sometimes in different directories. How should one of the modules inside the project refer to one of the non-Python resources in the project (CSV files, etc.)?
If we do something like:
thefile=open("test.csv")
or:
thefile=open("../somedirectory/test.csv")
It will work only when the script is run from one specific directory, or a subset of the directories.
What I would like to do is something like:
path=getBasePathOfProject()+"/somedirectory/test.csv"
thefile=open(path)
Is it possible?
👻 Read also: what is the best laptop for engineering students?
We hope this article has helped you to resolve the problem. Apart from How to refer to relative paths of resources when working with a code repository, check other code Python module-related topics.
Want to excel in Python? See our review of the best Python online courses 2023. If you are interested in Data Science, check also how to learn programming in R.
By the way, this material is also available in other languages:
- Italiano How to refer to relative paths of resources when working with a code repository
- Deutsch How to refer to relative paths of resources when working with a code repository
- Français How to refer to relative paths of resources when working with a code repository
- Español How to refer to relative paths of resources when working with a code repository
- Türk How to refer to relative paths of resources when working with a code repository
- Русский How to refer to relative paths of resources when working with a code repository
- Português How to refer to relative paths of resources when working with a code repository
- Polski How to refer to relative paths of resources when working with a code repository
- Nederlandse How to refer to relative paths of resources when working with a code repository
- 中文 How to refer to relative paths of resources when working with a code repository
- 한국어 How to refer to relative paths of resources when working with a code repository
- 日本語 How to refer to relative paths of resources when working with a code repository
- हिन्दी How to refer to relative paths of resources when working with a code repository
New York | 2023-02-08
I was preparing for my coding interview, thanks for clarifying this - How to refer to relative paths of resources when working with a code repository in Python is not the simplest one. Will get back tomorrow with feedback
Warsaw | 2023-02-08
I was preparing for my coding interview, thanks for clarifying this - How to refer to relative paths of resources when working with a code repository in Python is not the simplest one. Checked yesterday, it works!
Warsaw | 2023-02-08
Thanks for explaining! I was stuck with How to refer to relative paths of resources when working with a code repository for some hours, finally got it done 🤗. I just hope that will not emerge anymore