vote up 1 vote down star

Hi ,

i have a winform to merge few file and save the merge files in a Directory.

The directory in which it is saved ,it deletes the whole files and subdirectory in it .

Now i want that the user should not be able to save the file in My Computer,C,D Drives.

User can choose the directory through FolderBrowserDialog.

How can i restrict the user in doing so?
Can u plz help out?

flag

why don't you instead restrict the user by not allowing him to browse and store your files always in the same place? that way you will not have the headache of anticipating everywhere the user may save it. – Anders Karlsson Jul 28 at 8:07
you could then just check if something is there already and in that case prompt for action (e.g. merge or delete previous contents), just a thought. – Anders Karlsson Jul 28 at 8:08

2 Answers

vote up 2 vote down check

Perhaps you mean that the user chooses the directory using the FolderBrowserDialog ? In any case, neither the FolderBrowserDialog nor the SaveFileDialog offer any in-built means of restricting the user selection.

Your most straightforward option therefore is to validate the user's selection and check if it is not one of directories you have chosen to restrict access to. You could also set code permissions and disallow permission for your code to save files into the restricted folders.

link|flag
vote up 2 vote down

The simplest way of doing it would be use the access rights in Windows NTFS file system.

link|flag
How to do that? – crazy_itgal Jul 28 at 7:48
google.com.pk/search?q=ntfs+file+permissions/… – Umair Ahmed Jul 28 at 7:53
windowsecurity.com/articles/… – Umair Ahmed Jul 28 at 7:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.