Tagged Questions
The fileiopermission tag has no wiki summary.
4
votes
3answers
171 views
Cannot read txt files from C:\Testing\Docs using C#.Net
I have a C# .Net 4.0 Project which needs to read text files and parse them - very simple.
The files are located in C:\Testing\Docs
When I try to open a text file in the above directory I get the ...
3
votes
3answers
187 views
Error while creating folder in remote server
Hi I have a written for code for writing a file in the remote server in .net. When I keep output path as local drive - the code works fine and creates folders and text files. But when I point to a ...
2
votes
1answer
3k views
Cannot copy file, even though FileIOPermission is granted in C#
I was trying out the FileIOPermission in Windows 7 in .NET 3.5. I have been a Windows XP user and was granted this permission as I was an administrator
I wrote the following code, testing to see if I ...
1
vote
3answers
479 views
System.Security.Permission.FileIOPermission
Why do I get a "System.Security.Permission.FileIOPermission" error? Below is basically my whole program. It is extremely simple. All it needs to do is create a copy of a folder. It works on my PC and ...
1
vote
1answer
538 views
Setting FileIOPermissions in ASP.NET incode
I have this small app that loads plugin type components that other users can freely upload to the server. But I don't want the users to be able to access other users files. I need to set the access of ...
1
vote
2answers
276 views
How does .NET security really work?
I just saw this question:
Understanding .NET’s “SecurityAction” parameter for permissions
And I have a question. With the following code:
private void button1_Click(object sender, EventArgs e)
{
...
0
votes
1answer
242 views
Asp.net FileIOPermission exception on a thirdt party DLL
I am using Npgsql.dll in my asp.net project (Server 2008, VS2008). My dev environment is server 2003 and VS 2008. This dll works fine on my dev environment, but when I publish this on production, it ...
0
votes
1answer
35 views
How to change the mode from read-write to read-only in a File-resource object in Ruby?
My code needs to create a file, write to it, and then change the file-bject to read-only mode.
What I do now, seems kindof ugly: I open the file with mode "wb", write to it, close it, then re-open it ...
0
votes
1answer
62 views
FileIOPermission.GetPathList throws exception?
i'm using FileIOPermission, and it's throwing an error on me:
FileIOPermission fileIOPerm = new FileIOPermission(FileIOPermissionAccess.AllAccess, folderName);
...
0
votes
1answer
73 views
FileIOPermission fails when there is a '~' in the path. Why?
I'm catching the following error in a publishing script (VB.Net) I'm running:
Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, ...
0
votes
1answer
522 views
Request for the permission of type 'System.Security.Permissions.FileIOPermission…PublicKeyToken=b77a5c561934e089' failed
I'm getting this error when uploading an image on my hosting.
Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=4.0.0.0, Culture=neutral, ...
0
votes
1answer
148 views
.Net - using FileIOPermission with mask in file name
I would like to apply FileIOPermission on set of files using mask in file name, ex. on all txt files in folder C:\TMP:
[type: FileIOPermission(SecurityAction.PermitOnly, Read = @"C:\TMP\*.txt")]
...