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 persmissions for the file are present.

Does anybody know a way to overcome this?

many thanks in advance,

Philip

EDIT:

I finally found the answer myself. The FileStream accepts another parameter which defnies the file access (FileAccess.Read in this case):

fstream = new FileStream(path, FileMode.Open, FileAccess.Read);

With this modification it works just fine.

link|improve this question
Is this a windows app or service? Is it a network path or local? – Cole W Jun 8 '11 at 18:58
What operating system and where is the file? – petejamd Jun 8 '11 at 19:06
I am sorry, I forgot to mention that. It is Windows 7 with activated UAC. It is a local path on C:\Program Files (x86)\AppName\german.ini – Philip Jun 8 '11 at 19:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.