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

Popular posts from this blog

c++ - QtQuick: QQmlApplicationEngine failed to load component qrc:/main.qml:23 Invalid attached object assignment -

sql - dynamically varied number of conditions in the 'where' statement using LINQ -

iphone - Smoothing a rounded stroke in Core Graphics -