I am trying to output a list of drive files using a second csv as input.
gam redirect csv ./files.csv multiprocess csv .\2010-2015.csv gam user ~id print filelist fields name,id (the email field is 'id')
Using a different csv, this same command worked without issue. I received the following:
Traceback (most recent call last):
File "__init__.py", line 68726, in ProcessGAMCommand
File "__init__.py", line 9694, in doCSV
File "csv.py", line 111, in __next__
File "<frozen codecs>", line 322, in decode
File "encodings\utf_8_sig.py", line 69, in _buffer_decode
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 2323: invalid continuation byte
I thought something might be wrong with the input csv, but it was generated using the same mechanism as the working one.
Cheers,
Bill