R01k
R01k

Reputation: 795

Python - FileNotFoundError for existing file

On my Windows 10 machine open() throws FileNotFoundError for a file that does exist. The same file on a Windows 7 machine is found. What's going on?

enter image description here

Upvotes: 0

Views: 274

Answers (1)

R01k
R01k

Reputation: 795

The problem was using python 32-bit on a 64-bit machine. Python x64 opens the file as expected.

Upvotes: 1

Related Questions