]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/file.tex
added SetStatusText method (avoiding dc.Clear)
[wxWidgets.git] / docs / latex / wx / file.tex
index 0aa2ad24a3a33001f02a7f75186e37a4a821f587..fbb705f154785a67ecdb41e51f40504b9b12ab3c 100644 (file)
@@ -54,6 +54,8 @@ or test if it can be opened for writing with Access()}
 contents of the file is not erased and the file pointer is initially placed at the end of the file;
 can not be used with Access(). This is the same as {\bf wxFile::write} if the
 file doesn't exist.}
 contents of the file is not erased and the file pointer is initially placed at the end of the file;
 can not be used with Access(). This is the same as {\bf wxFile::write} if the
 file doesn't exist.}
+\twocolitem{{\bf wxFile::write\_excl}}{Open the file securely for writing (Uses O\_EXCL | O\_CREAT).
+Will fail if the file already exists, else create and open it atomically.  Useful for opening temporary files without being vulnerable to race exploits.}
 \end{twocollist}
 
 Other constants defined elsewhere but used by wxFile functions are wxInvalidOffset which represents an
 \end{twocollist}
 
 Other constants defined elsewhere but used by wxFile functions are wxInvalidOffset which represents an
@@ -282,7 +284,7 @@ the number of bytes actually written
 
 Writes the contents of the string to the file, returns TRUE on success.
 
 
 Writes the contents of the string to the file, returns TRUE on success.
 
-The second argument specifies is only meaningful in Unicode build of wxWindows when
+The second argument is only meaningful in Unicode build of wxWindows when
 {\it conv} is used to convert {\it s} to multibyte representation.
 
 \section{\class{wxFFile}}\label{wxffile}
 {\it conv} is used to convert {\it s} to multibyte representation.
 
 \section{\class{wxFFile}}\label{wxffile}
@@ -483,5 +485,6 @@ Number of bytes written.
 
 Writes the contents of the string to the file, returns TRUE on success.
 
 
 Writes the contents of the string to the file, returns TRUE on success.
 
-The second argument specifies is only meaningful in Unicode build of wxWindows when
+The second argument is only meaningful in Unicode build of wxWindows when
 {\it conv} is used to convert {\it s} to multibyte representation.
 {\it conv} is used to convert {\it s} to multibyte representation.
+