Crontab and working directory

Hi all
I would like to crontab some python script I have.
These have the task to write a txt file on the same directory where they are let' say 'scriptFolder'.
When I schedule the script execution with crontab the file is printed out somewhere else.
Is there any way to tell crontab that for that script the directory should be the one of the script?
I am using the following

46 8 * * python \scriptFolder\MyScript.py

Can you help me with that?

Try,

46 8 * * cd \scriptFolder; python MyScript.py

It works!
Thank you very much!
Regards
Mn