[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Stream that stores its data in a named file on disk.
Source position: classesh.inc line 648
type TFileStream = class(THandleStream) |
||
public |
||
procedure Create(); |
|
Creates a file stream. |
destructor Destroy; override; |
|
Destroys the file stream. |
property FileName: String; [r] |
|
The filename of the stream. |
end; |
|
Stream that stores its data in a named file on disk. |
|
| | ||
|
Base clas for streams that are identified by an OS handle. |
|
| | ||
|
Base class for streams. |
|
| | ||
TObject |
TFileStream is a TStream descdendent that stores or reads it's data from a named file in the filesystem of the operating system.
To this end, it overrides some of the abstract methods in TStream and implements them for the case of files on disk, and it adds the FileName property to the list of public properties.
|
Creates a file stream. |
|
|
Base class for streams. |