I have a function that takes in a path relative to the current working directory:
get_full_path('./subfolder'):
It should expand the ./ notation into the full root path, returning:
home/username/project/subfolder
Ideally I'd like a single os method that can do this.