import os
print(__file__)
print(os.path.abspath(__file__))
print(os.path.dirname(os.path.abspath(__file__)))
print(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
print(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
print()
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
print(BASE_DIR);
print(type(os.path.join(BASE_DIR, "templates")))
print(os.path.join(BASE_DIR, "templates"))
print()
print(__name__)
import inspect
print(inspect.getfile(inspect.currentframe()))
-------------------------------------------------------------------------
python shell 에서 하면 안나오고, os cmd에서 해야 한다.
> python xxxx.py
init.py
C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32\init.py
C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32
C:\Users\Administrator\AppData\Local\Programs\Python
C:\Users\Administrator\AppData\Local\Programs
C:\Users\Administrator\AppData\Local\Programs\Python
<class 'str'>
C:\Users\Administrator\AppData\Local\Programs\Python\templates
__main__
init.py
현재실행되는 모듈의 파일명 조회 __file__, __name__, os.path.abspath, os.path.dirname, os.path.join
|
2019.08.31 01:54:31
|
2020.01.11 00:56:13
|
652
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2019.09.24
2019.09.16
2019.09.14
2019.09.03
2019.09.03
2019.08.30
2019.08.30
2019.08.30
2019.08.29
2019.08.29