Share via


OpenRead Method

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

Opens an existing file for reading.

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

Syntax

'Declaration
Public Shared Function OpenRead ( _
    path As String _
) As FileStream
public static FileStream OpenRead(
    string path
)
public:
static FileStream^ OpenRead(
    String^ path
)
static member OpenRead : 
        path:string -> FileStream 
public static function OpenRead(
    path : String
) : FileStream

Parameters

Return Value

Type: System.IO. . :: . .FileStream
A read-only FileStream on the specified path.

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

System.IO Namespace