API:System.Classes.TFileStream.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const AFileName: string; Mode: Word); overload;
constructor Create(const AFileName: string; Mode: Word; Rights: Cardinal); overload;

C++

__fastcall TFileStream(const System::UnicodeString AFileName, System::Word Mode)/* overload */;
__fastcall TFileStream(const System::UnicodeString AFileName, System::Word Mode, unsigned Rights)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
System.Classes.pas
System.Classes.hpp
System.Classes TFileStream

Description

Creates an instance of THandleStream.

System.Classes.TFileStream.Create inherits from System.Classes.THandleStream.Create. All content below this line refers to System.Classes.THandleStream.Create.

Creates an instance of THandleStream.

Call Create to instantiate a THandleStream for a given handle.

The handle must be obtained by opening or creating the resource in the appropriate mode. For example, to create a handle stream for reading from a file, obtain the file handle by opening the file with an fmOpenRead or fmOpenReadWrite mode. To create a handle stream for writing to a file, obtain the file handle by opening the file with an fmOpenWrite or fmOpenReadWrite mode.

See Also