I'm running Window 10 64-bit. I have a Python project:
A:\code\projectFolder\project.py
For project.py, I want to import the following file:
A:\code\importThisFolder\importThisFile.py
On project.py, I've tried using without success:
import sys
sys.path.insert(0,'A:\code\importThisFolder')
import importThisFile
Can someone please help me with my import issues?