
Get the parent directory of a folder/file in python. Using the "os" library its possible using python.
Lets try to understand with an example
>>> import os
>>> os.path.dirname('D:\Workspace\8.0.0.0 - INT')
Output will be as: 'D:\\Workspace'
Same if...