
# Get the hard drive name of a specific path
# https://www.globalsino.com/ICs/


from pathlib import Path

path = Path("C:\0Python\csvForTests\TemporaryData.csv")

print(path.parent.absolute())

