CreateLogFile function (clfsw32.h)
Creates or opens a log. The log can be dedicated or multiplexed, and that depends on the log name. Use the CloseHandle function to close the log.
Syntax
CLFSUSER_API HANDLE CreateLogFile(
[in] LPCWSTR pszLogFileName,
[in] ACCESS_MASK fDesiredAccess,
[in] DWORD dwShareMode,
[in, optional] LPSECURITY_ATTRIBUTES psaLogFile,
[in] ULONG fCreateDisposition,
[in] ULONG fFlagsAndAttributes
);
Parameters
[in] pszLogFileName
The name of the log.
This name is specified when creating the log by using CreateLogFile. The following example identifies the format to use.
log :<LogName>[::<LogStreamName>]
For example: The path "LOG:c:\MyDirectory\MyLog" creates the file "c:\MyDirectory\MyLog.blf". The path "??\LOG:\HarddiskVolume1\MyDirectory\MyLog" creates the file "\.\HarddiskVolume1\MyDirectory\MyLog.blf", as does the path "\clfs\Device\HarddiskVolume1\MyDirectory\MyLog".
<LogName> corresponds to a valid file path in the file system, and <LogStreamName> is the unique name of a log stream in the log. For more information, see Log Types.
[in] fDesiredAccess
The type of access that the returned handle has to the log object.
Value | Meaning |
---|---|
|
Specifies read access to the object. |
|
Specifies write access to the object. |
|
Specify log deletion access |
A bitwise OR of two or more of these flags allows combinations of read, write, and delete access to the object.
[in] dwShareMode
The sharing mode of a file.
A client cannot request a sharing mode that conflicts with any mode that is specified in any previous open request that has an open handle.
If this parameter is zero and the function succeeds, the object cannot be shared and cannot be opened again until the handle is closed.
This parameter can be one or more of the following values.
[in, optional] psaLogFile
A pointer to a SECURITY_ATTRIBUTES structure that specifies the security attributes of a log.
It determines whether the returned handle can be inherited by child processes. If this parameter is NULL, the handle cannot be inherited.
The lpSecurityDescriptor member of SECURITY_ATTRIBUTES specifies a security descriptor for the new log handle. If psaLogFile is NULL, the object gets a default security descriptor. The access control lists (ACL) in the default security descriptor for a log come from the primary or impersonation token of the creator.
[in] fCreateDisposition
An action to be taken.
This parameter can be one of the following values.
[in] fFlagsAndAttributes
The file attributes and flags for the file.
This parameter can take the following values.
Return value
If the function succeeds, the return value is a handle to the log.
If the function fails, the return value is INVALID_HANDLE_VALUE. To get extended error information, call GetLastError.
The following list identifies the possible error codes:
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2003 R2 [desktop apps only] |
Target Platform | Windows |
Header | clfsw32.h |
Library | Clfsw32.lib |
DLL | Clfsw32.dll |