Hi @Dave_O
the issue is not there, it has to do with the use of backslash
proper syntax for folder path join should be:
user_folder = os.path.expanduser('~')
folder_path = os.path.join(user_folder + "\ACCDocs\\blah\\blah\\blah")
and use the folder_path in the pick_file
method
no .replace
needed