c# - Creating a folder Inside Mydocument Using Silverlight -
I am developing a Silverlight4 application that has given higher permissions and is running out of the browser Using MyDocuments
if (application.Current.HasElevatedPermissions) {string path = environment. GETFolderPath (Environment.SpecialFolder.MyDocuments); }
Is it possible to create subfolders inside MyDocuments.
Can someone give sample code for it
thanks in advance
To manipulate the directory on the file system, would you like to use static methods? One such way is.
Comments
Post a Comment