Skip to content

Instantly share code, notes, and snippets.

@rreece
Last active March 3, 2023 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rreece/32760ad081a7dac5a5e8f4c04fb12f76 to your computer and use it in GitHub Desktop.
Save rreece/32760ad081a7dac5a5e8f4c04fb12f76 to your computer and use it in GitHub Desktop.
Get the path of this file in python
import os
path_of_this_file = os.path.abspath(__file__)
dir_of_this_file = os.path.dirname(os.path.abspath(__file__))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment