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!

File.Create (String)

Creates a file in the specified path.

[Visual Basic]
Overloads Public Shared Function Create( _
   ByVal path As String _
) As Stream
[C#]
public static Stream Create(
   string path
);
[C++]
public: static Stream* Create(
   String* path
);
[JScript]
public static function Create(
   path : String
) : Stream;

Parameters

path
Path and name of file to create.

Return Value

A new file.

Exceptions

Exception Type Condition
IOException The directory specified in

See Also

File Class | File Members | System.IO Namespace | File.Create Overload List