All application data must be stored in the% appdata% directory.
Since you specified C #, here is the code to get the folder:
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
This will be displayed in the following location: In XP: C: / Documents and Settings / username / application data / In Vista: C: / Users / username / AppData / Roaming
I would recommend that you create a folder in this directory for your application and copy there.
source
share