The LZOpenFile function creates, opens, reopens, or deletes the specified file.
INT LZOpenFile(
LPTSTR lpFileName, |
// address of name of file to be opened |
LPOFSTRUCT lpReOpenBuf, |
// address of open file structure |
WORD wStyle |
// action to take |
); |
The szPathName member of this structure contains characters from the
original equipment manufacturer (OEM) character set.
Value |
Meaning |
OF_CANCEL |
Ignored. In the Win32-based application programming interface (API), the OF_PROMPT style produces a dialog box containing a Cancel button. |
OF_CREATE |
Directs LZOpenFile to create a new file. If the file already exists, it is truncated to zero length. |
OF_DELETE |
Deletes the file. |
OF_EXIST |
Opens the file and then closes it to test for a file’s existence. |
OF_PARSE |
Fills the OFSTRUCT structure but carries out no other action. |
OF_PROMPT |
Displays a dialog box if the requested file does not exist. The dialog box informs the user that Windows cannot find the file, and it contains Retry and Cancel buttons. Choosing the Cancel button directs LZOpenFile to return a “file not found” error message. |
OF_READ |
Opens the file for reading only. |
OF_READWRITE |
Opens the file for reading and writing. |
OF_REOPEN |
Opens the file using information in the reopen buffer. |
OF_SHARE_DENY_NONE |
Opens the file without denying other processes read or write access to the file. LZOpenFile fails if the file has been opened in compatibility mode by any other process. |
OF_SHARE_DENY_READ |
Opens the file and denies other processes read access to the file. LZOpenFile fails if the file has been opened in compatibility mode or has been opened for read access by any other process. |
OF_SHARE_DENY_WRITE |
Opens the file and denies other processes write access to the file. LZOpenFile fails if the file has been opened in compatibility mode or has been opened for write access by any other process. |
OF_SHARE_EXCLUSIVE |
Opens the file in exclusive mode, denying other processes both read and write access to the file. LZOpenFile fails if the file has been opened in any other mode for read or write access, even by the current process. |
OF_WRITE |
Opens the file for writing only. |
If the function succeeds and the value specified by the wStyle parameter is not OF_READ, the return value is a handle identifying the file. If the file is compressed and opened with wStyle set to OF_READ, the return value is a special file handle.
If the function fails, the return value is an LZERROR_* code. These codes have values less than zero. There is no extended error information for this function; do not call GetLastError.
Note LZOpenFile calls neither SetLastError nor SetLastErrorEx; thus, its failure does not affect a thread’s last-error code.
Here is a list of the LZERROR_* codes that LZOpenFile can return upon failure:
Value |
Meaning |
LZERROR_BADINHANDLE |
The handle identifying the source file is not valid. The file cannot be read. |
LZERROR_GLOBALLOC |
The maximum number of open compressed files has been exceeded or local memory cannot be allocated. |
If the wStyle parameter is the OF_READ flag (or OF_READ and any of the OF_SHARE_ flags) and the file is compressed, LZOpenFile calls the LZInit function, which performs the required initialization for the decompression operations.
The handle this function returns is compatible only with the functions in LZEXPAND.DLL; it should not be used for other file operations.
file: /Techref/os/win/api/win32/func/src/f56_7.htm, 9KB, , updated: 2001/6/24 01:06, local time: 2024/11/5 15:22,
18.191.225.216:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://ecomorder.com/techref/os/win/api/win32/func/src/f56_7.htm"> LZOpenFile</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to ecomorder.com! |
.