I'm storing application data in the
C:\ProgramData folder.
I want to prevent this data from being copied into
C:\Users\All Users\
What do I need to do in my application to disable this functionality?
I'm storing application data in the
C:\ProgramData folder.
I want to prevent this data from being copied into
C:\Users\All Users\
What do I need to do in my application to disable this functionality?
Copyright © 2021 Jogjafile Inc.
C:\Users\All Usersis a symbolic link toC:\ProgramData.C:\ProgramDatais the "real" location whileC:\Users\All Usersis there just for compatibility.So nothing is actually copied to
C:\Users\All Users, it just points toC:\ProgramDatawhere the files actually are.Reference
Edit: I found this somehow-similar SuperUser question