| Delphi .NET (2) Database (71) Delphi IDE (90) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280) |
When and why is an EFCreateError exception raised?
(1 votes). Leave comments and/ or rate it.
Question: My application throws an EFCreateError exception - what does that mean?Answer: The EFCreateError eception is raised when an error occurred during creation of a TFileStream stream (which is the creation of a new file).Probable reasons: lack of access rights, lack of disk space. See the code below (part of unit Classes.pas where this exception is raised.
Comments:
|