Python Forum
Project files, Python files - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Project files, Python files (/thread-27887.html)



Project files, Python files - Heyjoe - Jun-25-2020

Hello Python Users

I am a beginner in Python. I use the Pycharm editor. I have a project file called Myproject.py. This file is stored in the Pycharm Projects directory. I have 2 python files that I created called prac.py and practice.py. I can't find where these python files are stored.

Are python files actual files?


RE: Project files, Python files - menator01 - Jun-25-2020

Depending on os, probably
*nix /home/usrname
windows c:\Users\Username\AppData


RE: Project files, Python files - Larz60+ - Jun-26-2020

what is your OS?
in Linux, cd to a starting directory, then use find:
find . -name Myproject.py


RE: Project files, Python files - ndc85430 - Jun-26-2020

PyCharm should also be able to tell you what the path to the file is. At least in IntelliJ, it's displayed at the top of the window, so one would assume the same for PyCharm.


RE: Project files, Python files - Heyjoe - Jun-27-2020

Thanks everyone I was able to find these files by following the path that PyCharm gave me.