Go to the first, previous, next, last section, table of contents.


Reaction to a file creation request

The reaction to a create request may be one of the following:

create-compressed
When a user program tries to create a new file whose name matches the pattern, zlibc translates this request into creating a compressed file. A file is considered to be created, if the O_TRUNC flag is set, or if both O_CREAT and O_EXCL are set. This only applies to files opened write-only. WARNING-1: This is only reliable if you can guarantee that the newly created file is not accessed by some other program while the first one has it still open, or that it won't be opened again (even by the same program) shortly after it has been closed. WARNING-2: This should not be used if you expect the program to seek in this file.
no-create-compressed
Newly created files are created uncompressed. This is the default.


Go to the first, previous, next, last section, table of contents.