This is a pretty simple and easy question: How do I store and use file inside User's AppData directory?
I'm making a simple multimedia player and I want to store my library.xml file somewhere on the user's computer.
I'd also like to know how to use them, for example if I want to use my library.xml file with FileStream how do I make a reference to it?
ReadFileStream = new FileStream(@"\WHERE-IS-IT\Library.xml", FileMode.Open, FileAccess.Read, FileShare.Read);