Hi all,
Where should I save an xml file so it can be written to by a service (written in C#) when Windows is logged off?
Thanks Steven
Hi all,
Where should I save an xml file so it can be written to by a service (written in C#) when Windows is logged off?
Thanks Steven
You could use Isolated Storage, but the most reasonable is Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
since it saves it on the machine in the user profile for whatever account the service is run from.