Hello, here's the behavior I'm observing in pseudocode.
# no file exists
drive_put(local_file_path, folder_url, file_name, type = 'document')
# now a google doc exists
drive_put(local_file_path, folder_url, file_name, type = 'document')
# desired behavior is update, but drive_put says no drive file exists
# now two google docs of the same name exist
Is this expected? Am I doing something wrong? Thanks!