linux 下对文件的操作

保存学习资料;
1 linux file的总体操作:
http://blog.csdn.net/paobo/archive/2006/03/24/637080.aspx
2 fseek的用法:
http://wyiceshark.blogbus.com/logs/5323034.html
3 fopen的用法:
http://zhidao.baidu.com/question/23592096.html
4 利用iconv函数族进行编码转换:
http://www.utf.com.cn/article/s649

文件句柄和文件指针的转换:
int fd;
    fd=open("文件名",O_RDONLY);
FILE * fdP;
       fdP=fdopen(fd,"r");

你可能感兴趣的:(html,linux,.net,Blog)