NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IsolatedStorageFile.CreateDirectory

Creates a directory in the isolated storage scope.

[Visual Basic]
Public Sub CreateDirectory( _
   ByVal dir As String _
)
[C#]
public void CreateDirectory(
   string dir
);
[C++]
public: void CreateDirectory(
   String* dir
);
[JScript]
public function CreateDirectory(
   dir : String
);

Parameters

dir
relative path of the directory to create within the isolated storage scope

Return Value

none

Exceptions

Exception Type Condition
IsolatedStorageException insufficient permission to create isolated storage directory

Remarks

Created directory initially contains no files.

Requirements

NGWS Runtime Security:

IsolatedStorageFilePermission right to access the isolated storage scope

See Also

IsolatedStorageFile Class | IsolatedStorageFile Members | System.IO.IsolatedStorage Namespace