How change files in :C drive on windows with python

Viewed 28

I’m working in program that need to save my settings data in drives, so I put my data’s file in C drive next to the my program files. But My program can’t change them , windows needs permission to let program change files, what can I do that my program can change the data file !?

Thanks everyone

1 Answers

Just launch your program with administrators rights. It should probably solve the write/change permissions.

Related