Skip to content

Instantly share code, notes, and snippets.

@fluency03
Created November 24, 2016 08:21
Show Gist options
  • Select an option

  • Save fluency03/17fca8251aac28260d0f6c7910b2d668 to your computer and use it in GitHub Desktop.

Select an option

Save fluency03/17fca8251aac28260d0f6c7910b2d668 to your computer and use it in GitHub Desktop.
print __file__
print os.curdir
print os.getcwd()
print os.chdir('.')
print os.getcwd()
print os.path.dirname(__file__)
print os.pardir
print os.path.abspath(os.path.join(os.path.dirname( __file__ ), os.pardir))
print os.path.join(os.path.dirname( __file__ ), os.pardir)
# H:/My Documents/Python Scripts/dam/src/store.py
# .
# H:\My Documents\Python Scripts\dam
# None
# H:\My Documents\Python Scripts\dam
# H:/My Documents/Python Scripts/dam/src
# ..
# H:\My Documents\Python Scripts\dam
# H:/My Documents/Python Scripts/dam/src\..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment