Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
4answers
90 views

C# File.Open a read-only file with FileMode.Create

What I want to do is overwrite a read-only file. With a read/write file. With read/write files if I use File.Open(file, FileMode.Create) then if the file exists then it is deleted and a new one is ...
1
vote
1answer
115 views

Can't open a network file in WCF Service

I have a WCF WSDualHttpBinding service. The service is contained in a WindowsService with account type LocalSystem. The service is attempting to access a network file stored on another machine on the ...
0
votes
0answers
36 views

Access Permissions and SSLStream, C#

I'll make this question as precise as possible: I have a file-transfer program that I tweaked to run with SSLStream and encryption. After getting the encryption working, my FileStream runs into an ...
0
votes
0answers
26 views

java web start File Permission

just i want to ask that is java web start allow to access file from client machine or not.because i have tried to write a file on client machine from the server then it's giving an error : access ...
0
votes
2answers
139 views

How to check what user is trying to access a file?

i have an ASP.NET website which is using a filestream to read in a PDF image from a UNC share on a remote server 2003 box. i attempt to load the file on the site (which simply embeds a PDF viewer on ...
0
votes
3answers
373 views

Trouble deleting a file from c:\windows\system32 using C#

Not quite sure why I can't get this file to delete. I'm logged in as Admin, tried "Run as Admin", tried running in the same folder, tried setting permissions on the file, tried creating a test 1.txt ...
0
votes
1answer
150 views

safely lock a file then move? windows

I have a file and need to ensure it exist before inserting a row into the db. After i insert i need to use the PK as part of the filename and move it into another location. How do i check if it exist ...
0
votes
1answer
490 views

Security permissions for folder in vista (using c# application)

I've written a code in winforms and added this code to a setup application. (That code is actually to create files in application directory) When I try to run the application in vista it is not ...
-1
votes
1answer
73 views

Permission denied warning with function.file-put-contents

I'm using this code to download a dynamic image file which is already on my server $url = 'example.com/test/image.php'; $img = 'cert.png'; file_put_contents($img,'file_get_contents($url)); ...