Share via


Open Method (String, FileMode, FileAccess, FileShare)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Opens a FileStream on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.

Namespace:  System.IO
Assembly:  System.IO (in System.IO.dll)

Syntax

'Declaration
Public Shared Function Open ( _
    path As String, _
    mode As FileMode, _
    access As FileAccess, _
    share As FileShare _
) As FileStream
public static FileStream Open(
    string path,
    FileMode mode,
    FileAccess access,
    FileShare share
)
public:
static FileStream^ Open(
    String^ path, 
    FileMode mode, 
    FileAccess access, 
    FileShare share
)
static member Open : 
        path:string * 
        mode:FileMode * 
        access:FileAccess * 
        share:FileShare -> FileStream 
public static function Open(
    path : String, 
    mode : FileMode, 
    access : FileAccess, 
    share : FileShare
) : FileStream

Parameters

  • mode
    Type: System.IO. . :: . .FileMode
    A FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.

Return Value

Type: System.IO. . :: . .FileStream
A FileStream on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.

Remarks

The path parameter is permitted to specify relative or absolute path information. Relative path information is interpreted as relative to the current working directory. To obtain the current working directory, see GetCurrentDirectory.

.NET Framework Security

See Also

Reference

File Class

Open Overload

System.IO Namespace