I am trying to delete something from my local app data, this is my code
string folder = "%LOCALAPPDATA%\\test";
Directory.Delete(folder);
The error I get is that it's trying to find The %LOCALAPPDATA%
Path inside of where my project is stored, I'm not sure if I'm doing anything wrong. If you can please help!