I'm on windows 7 creating a desktop aplication in Visual C# 2010.
The error's produced here:
The exact error:
Access to the path 'C:\Users\Danie l\Documents' is denied.
I've already tried modifying the app.manifest and it does not work... It's been about 4 hours i've been trying to fix this. Any ideas?
Thanks in advance.
The error's produced here:
Code:
void Copymove(string file)
{
File.Copy(Environment.GetFolderPath(Environment.SpecialFold er.MyDocuments), "../../contenidos/" + file);
}
Access to the path 'C:\Users\Danie l\Documents' is denied.
I've already tried modifying the app.manifest and it does not work... It's been about 4 hours i've been trying to fix this. Any ideas?
Thanks in advance.
Comment