Home > other >  How change files in :C drive on windows with python
How change files in :C drive on windows with python

Time:09-13

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

CodePudding user response:

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

  • Related