The unauthorizedaccessexcepti tag has no wiki summary.
11
votes
1answer
333 views
UnauthorizedAccessException vs SecurityException
The MSDN constructor for a FileStream says that it may throw either an UnauthorizedAccessException or a SecurityException. Here's what MSDN says about these exceptions.
UnauthorizedAccessException:
...
5
votes
3answers
543 views
Directory.EnumerateFiles => UnauthorizedAccessException
There is a nice new method in .NET 4.0 for getting files in a directory in a streaming way via enumeration.
The problem here is that if one wishes to enumerate all files one may not know in advance ...
4
votes
1answer
367 views
trying to use Directory .EnumerateFiles(“*.jpg”, SearchOption.AllDirectories);
So i'm using Directory.GetFiles(folder, "*.jpg", SearchOption.AllDirectories). When i try it on the c:\ drive in windows 7, since windows 7 still had c:\documents and settings (for legacy systems like ...
3
votes
0answers
118 views
System.AddIn, AddInStore.Rebuild causes UnauthorizedAccessException
my application is loading addins dynamically and when i add
a new module i need to Rebuild the Pipeline segments cache,
but the app doesn't have write permissions in the program folder
and causes a ...
1
vote
3answers
261 views
WPF: UnauthorizedAccessException using anonymous methods
Here is the thing, I want to create a simply app that copy many files from one site, and move them to another; but using async methods and create a new thread.
private void button3_Click(object ...
1
vote
2answers
180 views
Serialization problem : System.UnauthorizedAccessException
I am getting this error:
An unhandled exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll
Additional information: Access to the path 'C:\Users\Storm ...
0
votes
0answers
4 views
Hosting Sql Server CE 4 Umbraco Site and UnauthorizedAccessException
I'm trying to put an umbraco site on a webhost which works fine locally, but get the UnauthorizedAccessException exception below.
The site runs Sql Server CE 4 and the binaries are also included in ...
0
votes
1answer
25 views
File.Copy UnauthorizedAccessException
I have an application that needs to copy some files to a directory under C:\Program Files.
On Windows 7 with UAC enabled, I get an UnauthorizedAccessException when calling File.Copy.
I've added a ...
0
votes
0answers
56 views
How to handle UnauthorizedAccessException from User Code
In a Windows Application I have, I am doing some changes in registry like deleting a particular key, in some test scenarios like in a Vista machine with its UAC put on, I'm getting ...
0
votes
2answers
175 views
C# - UnauthorizedAccessException in Directory.CreateDirectory()
I'm new at C#, but I guess I'm using a simple command in Directory.CreateDirectory,
and while I was only building in my own PC everything was fine. But when I published it and opened the app in other ...
0
votes
2answers
122 views
Ajax Jquery Call throws 401 Exception
recently, while implementing Ajax Jquery on one the my site, throw strange 401 UnAuthorised error, the strange thing in it is i am using forms authentication and the user is also logged in, but still ...
0
votes
1answer
235 views
401 unauthorized exception while reading data from the document library SharePoint 2010
We developed a WebPart to read the content of the file in the document library in the SiteCollection. I used the following code to read the content.
WebClient wc = new WebClient();
wc.Credentials = ...
0
votes
2answers
159 views
How to get access to system folders when enumerating directories?
I am using this code:
DirectoryInfo dir = new DirectoryInfo("D:\\");
foreach (FileInfo file in dir.GetFiles("*.*",SearchOption.AllDirectories))
{
MessageBox.Show(file.FullName);
}
I get this ...
0
votes
0answers
467 views
UnauthorizedAccessException {“Access to the path is denied.”}
I am trying to edit the sitemap before loading by using the class EditableSitemapProvider where the sitemap gets updated by the database to show added or removed items. While removing an item,
...
0
votes
0answers
122 views
UnauthorizedAccessException when reading from Application Directory
I am trying to read translation files from the application directory, but the call to open a Stream fails:
fstream = new FileStream(path, FileMode.Open);
I don't quite understand why, as the user ...
0
votes
2answers
104 views
creating folder in windows dir
I wanted to automate this process: http://www.blogsdna.com/2698/you-can-customize-windows-7-logon-background-officially.htm
Registery was no problem.
But when i wanted to create the backgrounds ...
0
votes
2answers
367 views
UnauthorizedAccessException when running desktop application from shared folder
I created a desktop application using VS 2008.
When I run it locally, all works well.
I shared my output folder (WITHOUT allowing network users to change my files)
and ran my exe from another Vista ...
0
votes
1answer
109 views
WCF is throwing UnauthorizedAccessException after upgrade to .NET 4.0
I have a pretty simple client-server ASP.NET app; communication is via WCF service. All worked perferctly in VS 2008, now I upgraded to VS2010 and every time the client code is trying to instantiate a ...
0
votes
0answers
843 views
Attempted to perform an unauthorized operation
Now I use the following code:
Public Function SetACL(ByVal filename As String, ByVal account As String, ByVal sender As Object, ByVal e As System.EventArgs) As Boolean
Try
Dim ...