wxFileA wxFile performs raw file I/O. This is a very small class designed to minimize the overhead of using it - in fact, there is hardly any overhead at all, but using it brings you automatic error checking and hides differences between platforms and compilers. wxFile also automatically closes the file in its destructor making it unnecessary to worry about forgetting to do it. wxFile is a wrapper around file descriptor. - see also wxFFile for a wrapper around FILE structure. wxFileOffset is used by the wxFile functions which require offsets as parameter or return them. If the platform supports it, wxFileOffset is a typedef for a native 64 bit integer, otherwise a 32 bit integer is used for wxFileOffset. Derived from None. Include files <wx/file.h> Constants wx/file.h defines the following constants:
#define wxS_IRUSR 00400 #define wxS_IWUSR 00200 #define wxS_IXUSR 00100 #define wxS_IRGRP 00040 #define wxS_IWGRP 00020 #define wxS_IXGRP 00010 #define wxS_IROTH 00004 #define wxS_IWOTH 00002 #define wxS_IXOTH 00001 // default mode for the new files: corresponds to umask 022 #define wxS_DEFAULT (wxS_IRUSR | wxS_IWUSR | wxS_IRGRP | wxS_IWGRP | wxS_IROTH | wxS_IWOTH)These constants define the file access rights and are used with wxFile::Create and wxFile::Open. The OpenMode enumeration defines the different modes for opening a file, it is defined inside wxFile class so its members should be specified with wxFile:: scope resolution prefix. It is also used with wxFile::Access function.
Other constants defined elsewhere but used by wxFile functions are wxInvalidOffset which represents an invalid value of type wxFileOffset and is returned by functions returning wxFileOffset on error and the seek mode constants used with Seek():
Members
wxFile::wxFile
wxFile::wxFilewxFile() Default constructor. wxFile(const char* filename, wxFile::OpenMode mode = wxFile::read) Opens a file with the given mode. As there is no way to return whether the operation was successful or not from the constructor you should test the return value of IsOpened to check that it didn't fail. wxFile(int fd) Associates the file with the given file descriptor, which has already been opened. Parameters filename
mode
fd
wxFile::~wxFile~wxFile() Destructor will close the file. NB: it is not virtual so you should not use wxFile polymorphically.
wxFile::Accessstatic bool Access(const char * name, OpenMode mode) This function verifies if we may access the given file in specified mode. Only values of wxFile::read or wxFile::write really make sense here.
wxFile::Attachvoid Attach(int fd) Attaches an existing file descriptor to the wxFile object. Example of predefined file descriptors are 0, 1 and 2 which correspond to stdin, stdout and stderr (and have symbolic names of wxFile::fd_stdin, wxFile::fd_stdout and wxFile::fd_stderr). The descriptor should be already opened and it will be closed by wxFile object.
wxFile::Closevoid Close() Closes the file.
wxFile::Createbool Create(const char* filename, bool overwrite = false, int access = wxS_DEFAULT) Creates a file for writing. If the file already exists, setting overwrite to true will ensure it is overwritten.
wxFile::Detachvoid Detach() Get back a file descriptor from wxFile object - the caller is responsible for closing the file if this descriptor is opened. IsOpened() will return false after call to Detach().
wxFile::fdint fd() const Returns the file descriptor associated with the file.
wxFile::Eofbool Eof() const Returns true if the end of the file has been reached. Note that the behaviour of the file pointer based class wxFFile is different as wxFFile::Eof will return true here only if an attempt has been made to read past the last byte of the file, while wxFile::Eof() will return true even before such attempt is made if the file pointer is at the last position in the file. Note also that this function doesn't work on unseekable file descriptors (examples include pipes, terminals and sockets under Unix) and an attempt to use it will result in an error message in such case. So, to read the entire file into memory, you should write a loop which uses Read repeatedly and tests its return condition instead of using Eof() as this will not work for special files under Unix.
wxFile::Existsstatic bool Exists(const char* filename) Returns true if the given name specifies an existing regular file (not a directory or a link)
wxFile::Flushbool Flush() Flushes the file descriptor. Note that wxFile::Flush is not implemented on some Windows compilers due to a missing fsync function, which reduces the usefulness of this function (it can still be called but it will do nothing on unsupported compilers).
wxFile::GetKindwxFileKind GetKind() const Returns the type of the file. Possible return values are:
enum wxFileKind { wxFILE_KIND_UNKNOWN, wxFILE_KIND_DISK, // a file supporting seeking to arbitrary offsets wxFILE_KIND_TERMINAL, // a tty wxFILE_KIND_PIPE // a pipe }; wxFile::IsOpenedbool IsOpened() const Returns true if the file has been opened.
wxFile::LengthwxFileOffset Length() const Returns the length of the file.
wxFile::Openbool Open(const char* filename, wxFile::OpenMode mode = wxFile::read) Opens the file, returning true if successful. Parameters filename
mode
wxFile::Readsize_t Read(void* buffer, size_t count) Reads the specified number of bytes into a buffer, returning the actual number read. Parameters buffer
count
Return value The number of bytes read, or the symbol wxInvalidOffset (-1) if there was an error.
wxFile::SeekwxFileOffset Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart) Seeks to the specified position. Parameters ofs
mode
Return value The actual offset position achieved, or wxInvalidOffset on failure.
wxFile::SeekEndwxFileOffset SeekEnd(wxFileOffset ofs = 0) Moves the file pointer to the specified number of bytes relative to the end of the file. For example, SeekEnd(-5) would position the pointer 5 bytes before the end. Parameters ofs
Return value The actual offset position achieved, or wxInvalidOffset on failure.
wxFile::TellwxFileOffset Tell() const Returns the current position or wxInvalidOffset if file is not opened or if another error occurred.
wxFile::Writesize_t Write(const void* buffer, size_t count) Writes the specified number of bytes from a buffer. Parameters buffer
count
Return value the number of bytes actually written
wxFile::Writebool Write(const wxString& s, wxMBConv& conv = wxConvUTF8) Writes the contents of the string to the file, returns true on success. The second argument is only meaningful in Unicode build of wxWidgets when conv is used to convert s to multibyte representation. Note that this method only works with NUL-terminated strings, if you want to write data with embedded NULs to the file you should use the other Write() overload.
|