tags:

views:

44

answers:

1

Hi all,

I am downloading a storing a set of files in a separate folders in My Documents . Is it possible to hide this folder.

I am creating an application which runs Out Of Browser and Has Elevated Permissions

+3  A: 

Assuming you have the proper permissions and that the folder exists at the correct path:

File.SetAttributes(@"..\foo\bar", FileAttributes.Hidden);
Randolpho