We have a program that should run on local computers, terminal servers, and Citrix.
While the program is running, you need to create some user-specific data (Logs), so for this reason I save this in AppData (C: \ Users \\ AppData \ Roaming)
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
I am sure it works locally and with TS, but what about Citrix. I heard some information that the data created in AppData during the session is deleted during the logout, but it really is. I got the impression that
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
was the volatility folder (C: \ Users \\ AppData \ Local), and the data added to the Roaming folder was saved from session to session.
citrix
Rwj
source share