from pathlib import Path
destination_file = "foo.txt"
current_dir = Path.cwd()
out_file = current_dir + destination_file
Throws the below error out_file = current_dir + destination_file TypeError: unsupported operand type(s) for +: 'WindowsPath' and 'str'