Shubham
Shubham

Reputation: 22329

How can I make folder available to only VB.NET application?

I have build a VB.NET application which uses PHP command line to run some scripts in a folder in the same directory.

I do not want the script in PHP directory to be editable. So, I want that folder to be inaccessible by users or only available to my applicaiton.

Any Idea how can I achieve this?

Upvotes: 0

Views: 81

Answers (2)

tjlore
tjlore

Reputation: 1

Will the System.IO.File class do the trick?

[link text][1]

[1]: http://www.dreamincode.net/forums/topic/31134-modify-file-attributes/"System.IO.File on DreamInCode.Net"

Upvotes: 0

Matt
Matt

Reputation: 341

Not sure I totally understand the architecture of your solution, but it sounds like maybe you could use an IsolatedStorageFile? http://msdn.microsoft.com/en-us/library/3ak841sy(VS.80).aspx

Upvotes: 1

Related Questions