Warning: main(/www/www/htdocs/style/globals.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/c/chsize.html on line 1
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/globals.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/c/chsize.html on line 1
Warning: main(/www/www/htdocs/style/header.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/c/chsize.html on line 8
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/header.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/c/chsize.html on line 8
Change the size of a file
#include <unistd.h>
int chsize( int filedes,
long size );
- filedes
- A file descriptor for the file whose size you want to change.
- size
- The new size of the file, in bytes.
libc
Use the -l c option to
qcc
to link against this library.
This library is usually included automatically.
The chsize() function extends or truncates the file specified by
filedes to size bytes
The file is padded with NUL ('\0') characters if it needs to be extended.
|
The chsize() function
ignores advisory locks that may have been set with the
fcntl() function. |
- 0
- Success.
- -1
- An error occurred.
- EBADF
- The filedes argument isn't a valid file descriptor, or the file isn't opened for writing.
- ENOSPC
- There isn't enough space left on the device to extend the file.
- ENOSYS
- The chsize() function isn't implemented for the filesystem specified by filedes.
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
int main( void )
{
int filedes;
filedes= open( "file", O_RDWR | O_CREAT,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP );
if( filedes!= -1 ) {
if( chsize( filedes, 32 * 1024L ) != 0 ) {
printf( "Error extending file\n" );
}
close( filedes);
return EXIT_SUCCESS;
}
return EXIT_FAILURE;
}
QNX 4
Safety: | |
Cancellation point |
Yes |
Interrupt handler |
No |
Signal handler |
Yes |
Thread |
Yes |
close(),
creat(),
errno,
ftruncate(),
open()
Warning: main(/www/www/htdocs/style/footer.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/c/chsize.html on line 190
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/footer.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/c/chsize.html on line 190