Basic tools to manage files Warning: 'ProgramError' is raised when somebody wants to use the methods Read, Write, Seek, Close when File is not open.
More...
|
| OSD_File () |
| Creates File object.
|
|
| OSD_File (const OSD_Path &Name) |
| Instantiates the object file, storing its name.
|
|
| ~OSD_File () |
| Unlocks and closes a file, deletes a descriptor and destructs a file object.
|
|
void | Build (const OSD_OpenMode Mode, const OSD_Protection &Protect) |
| CREATES a file if it doesn't already exists or empties an existing file. After 'Build', the file is open. If no name was given, ProgramError is raised.
|
|
void | Open (const OSD_OpenMode Mode, const OSD_Protection &Protect) |
| Opens a File with specific attributes This works only on already existing file. If no name was given, ProgramError is raised.
|
|
void | Append (const OSD_OpenMode Mode, const OSD_Protection &Protect) |
| Appends data to an existing file. If file doesn't exist, creates it first. After 'Append', the file is open. If no name was given, ProgramError is raised.
|
|
void | Read (TCollection_AsciiString &Buffer, const Standard_Integer Nbyte) |
| Attempts to read Nbyte bytes from the file associated with the object file. Upon successful completion, Read returns the number of bytes actually read and placed in the Buffer. This number may be less than Nbyte if the number of bytes left in the file is less than Nbyte bytes. In this case only number of read bytes will be placed in the buffer.
|
|
void | ReadLine (TCollection_AsciiString &Buffer, const Standard_Integer NByte, Standard_Integer &NbyteRead) |
| Reads bytes from the data pointed to by the object file into the buffer <Buffer>. Data is read until <NByte-1> bytes have been read, until a newline character is read and transferred into <Buffer>, or until an EOF (End-of-File) condition is encountered. Upon successful completion, Read returns the number of bytes actually read into <NByteRead> and placed into the Buffer <Buffer>.
|
|
Standard_Integer | ReadLine (TCollection_AsciiString &Buffer, const Standard_Integer NByte) |
| Reads bytes from the data pointed to by the object file into the buffer <Buffer>. Data is read until <NByte-1> bytes have been read, until a newline character is read and transferred into <Buffer>, or until an EOF (End-of-File) condition is encountered. Upon successful completion, Read returns the number of bytes actually read and placed into the Buffer <Buffer>.
|
|
void | Read (const Standard_Address Buffer, const Standard_Integer Nbyte, Standard_Integer &Readbyte) |
| Attempts to read Nbyte bytes from the files associated with the object File. Upon successful completion, Read returns the number of bytes actually read and placed in the Buffer. This number may be less than Nbyte if the number of bytes left in the file is less than Nbyte bytes. For this reason the output parameter Readbyte will contain the number of read bytes.
|
|
void | Write (const TCollection_AsciiString &theBuffer, const Standard_Integer theNbBytes) |
| Attempts to write theNbBytes bytes from the AsciiString to the file.
|
|
void | Write (const Standard_Address theBuffer, const Standard_Integer theNbBytes) |
| Attempts to write theNbBytes bytes from the buffer pointed to by theBuffer to the file associated to the object File.
|
|
void | Seek (const Standard_Integer Offset, const OSD_FromWhere Whence) |
| Sets the seek pointer associated with the open file.
|
|
void | Close () |
| Closes the file (and deletes a descriptor)
|
|
Standard_Boolean | IsAtEnd () |
| Returns TRUE if the seek pointer is at end of file.
|
|
OSD_KindFile | KindOfFile () const |
| Returns the kind of file. A file can be a file, a directory or a link.
|
|
void | BuildTemporary () |
| Makes a temporary File This temporary file is already open !
|
|
void | SetLock (const OSD_LockType Lock) |
| Locks current file.
|
|
void | UnLock () |
| Unlocks current file.
|
|
OSD_LockType | GetLock () const |
| Returns the current lock state.
|
|
Standard_Boolean | IsLocked () const |
| Returns TRUE if this file is locked.
|
|
Standard_Size | Size () |
| Returns actual number of bytes of <me>.
|
|
Standard_Boolean | IsOpen () const |
| Returns TRUE if <me> is open.
|
|
Standard_Boolean | IsReadable () |
| returns TRUE if the file exists and if the user has the authorization to read it.
|
|
Standard_Boolean | IsWriteable () |
| returns TRUE if the file can be read and overwritten.
|
|
Standard_Boolean | IsExecutable () |
| returns TRUE if the file can be executed.
|
|
Standard_Boolean | ReadLastLine (TCollection_AsciiString &aLine, const Standard_Integer aDelay, const Standard_Integer aNbTries) |
| Enables to emulate unix "tail -f" command. If a line is available in the file <me> returns it. Otherwise attempts to read again aNbTries times in the file waiting aDelay seconds between each read. If meanwhile the file increases returns the next line, otherwise returns FALSE.
|
|
Standard_Boolean | Edit () |
| find an editor on the system and edit the given file
|
|
void | Rewind () |
| Set file pointer position to the beginning of the file.
|
|
void | Path (OSD_Path &Name) const |
| Gets file name and path.
|
|
void | SetPath (const OSD_Path &Name) |
| Sets file name and path. If a name is not found, it raises a program error.
|
|
Standard_Boolean | Exists () |
| Returns TRUE if <me> exists.
|
|
void | Remove () |
| Erases the FileNode from directory.
|
|
void | Move (const OSD_Path &NewPath) |
| Moves <me> into another directory.
|
|
void | Copy (const OSD_Path &ToPath) |
| Copies <me> to another FileNode.
|
|
OSD_Protection | Protection () |
| Returns access mode of <me>.
|
|
void | SetProtection (const OSD_Protection &Prot) |
| Changes protection of the FileNode.
|
|
Quantity_Date | AccessMoment () |
| Returns last write access. On UNIX, AccessMoment and CreationMoment return the same value.
|
|
Quantity_Date | CreationMoment () |
| Returns creation date. On UNIX, AccessMoment and CreationMoment return the same value.
|
|
Standard_Boolean | Failed () const |
| Returns TRUE if an error occurs.
|
|
void | Reset () |
| Resets error counter to zero.
|
|
void | Perror () |
| Raises OSD_Error.
|
|
Standard_Integer | Error () const |
| Returns error number if 'Failed' is TRUE.
|
|
Basic tools to manage files Warning: 'ProgramError' is raised when somebody wants to use the methods Read, Write, Seek, Close when File is not open.