Is it possible to specify the previous directory python?

前端 未结 2 1130
后悔当初
后悔当初 2021-02-14 20:54

I am attempting to make a Python testing script module self-contained directory-wise for scalability and maintainability purposes.

I have done some research and haven\'t

2条回答
  •  半阙折子戏
    2021-02-14 21:32

    path = os.path.dirname(__file__)
    print(path)
    

    will print the CWD of the file, say C:\Users\Test\Documents\CodeRevamp\Joke

    path2 = os.path.dirname(path)
    print(path2)
    

    will print the Parent directory of of the file: C:\Users\Test\Documents\CodeRevamp

提交回复
热议问题