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 Users
is a symbolic link toC:\ProgramData
.C:\ProgramData
is the "real" location whileC:\Users\All Users
is there just for compatibility.So nothing is actually copied to
C:\Users\All Users
, it just points toC:\ProgramData
where the files actually are.Reference
Edit: I found this somehow-similar SuperUser question