Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IOError: [Errno 22] invalid mode ('wb') or filename:

I keep getting the following error.

IOError: [Errno 22] invalid mode ('wb') or filename: 'C:\\Users\\Viral Patel\\Documents\\GitHub\\3DPhotovoltaics\\Data_Output\\Simulation_Data\\Raw_Data\\Raw_Simulation_Data_2014-03-24 17:21:20.545000.csv'

I think it is due to the timestamp at the end of the filename. Any ideas?

like image 207
user3369317 Avatar asked Mar 24 '14 21:03

user3369317


1 Answers

You cannot use : in Windows filenames, see Naming Files, Paths, and Namespaces ; it is one of the reserved characters:

  • The following reserved characters:

    • < (less than)
    • > (greater than)
    • : (colon)
    • " (double quote)
    • / (forward slash)
    • \ (backslash)
    • | (vertical bar or pipe)
    • ? (question mark)
    • * (asterisk)

Use a different character not on the reserved character list.

like image 132
Martijn Pieters Avatar answered Nov 03 '22 20:11

Martijn Pieters