- 论坛徽章:
- 0
|
本帖最后由 funmain 于 2011-09-13 11:03 编辑
源代码:空洞文件
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
char buffone[] = "abcdefghij";
char bufftwo[] = "ABCDEFGHIJ";
int main(void)
{
int fd;
fd = open("file.hole", O_RDWR | O_CREAT, 0775);
if(fd < 0)
printf("Create error!\n");
if(write(fd, buffone, 10) != 10)
printf("Buffone write error\n");
if(lseek(fd, 1000, SEEK_SET) == -1)
printf("Lseek error\n");
if(write(fd, bufftwo, 10) != 10)
printf("Bufftwo write error\n");
exit(0);
}
源代码:没有空洞的文件
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
char buffone[] = "abcdefghij";
int main(void)
{
int fd;
int i;
char bufftwo[1000];
memset(bufftwo, 'A', sizeof(bufftwo));
fd = open("file.nohole", O_RDWR | O_CREAT, 0775);
if(fd < 0)
printf("Create error!\n");
if(write(fd, buffone, 10) != 10)
printf("Buffone write error\n");
if(write(fd, bufftwo, 1000) != 1000)
printf("Bufftwo write error\n");
exit(0);
}
[hell@localhost program]$ ls -ls file.hole file.nohole
4 -rwxrwxr-x 1 jl jl 1010 09-13 18:27 file.hole
4 -rwxrwxr-x 1 jl jl 1010 09-13 18:24 file.nohole
[hell@localhost program]$ od -c file.hole
0000000 a b c d e f g h i j \0 \0 \0 \0 \0 \0
0000020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0
*
0001740 \0 \0 \0 \0 \0 \0 \0 \0 A B C D E F G H
0001760 I J
0001762
[jl@localhost unix_program]$ od -c file.nohole
0000000 a b c d e f g h i j A A A A A A
0000020 A A A A A A A A A A A A A A A A
*
0001760 A A
0001762
|
|