码迷,mamicode.com
首页 >  
搜索关键字:fopen    ( 1109个结果
C语言文件操作(一)
实例1:读写字符文件,每次读取一个字符。#include<stdio.h>#include<stdlib.h>intmain(){FILE*fpin;FILE*fpout;charc;fpout=fopen("c:\\dest.txt","wt");if((fpin=fopen("c:\\test.txt","rt"))!=NULL){c=fgetc(fpin);while(c!=EOF){fputc(c,fpout);c=fgetc(fpin);..
分类:编程语言   时间:2014-05-12 03:57:13    阅读次数:238
C语言文件操作(三)
实例3:读写字节文件,每次读入一个缓存里面。#include<stdio.h>#include<stdlib.h>#defineMAXLEN1024intmain(){FILE*fpin;FILE*fpout;unsignedcharbuf[MAXLEN];intc;fpout=fopen("c:\\dest.jpg","wb");if((fpin=fopen("c:\\test.jpg","rb"))!=NULL){c=fread(buf,s..
分类:编程语言   时间:2014-05-12 03:47:54    阅读次数:244
C语言文件操作(二)
实例2:读取字符文件,每次读入一个缓存里面。#include<stdio.h>#include<stdlib.h>#defineMAXLEN1024intmain(){FILE*fin;FILE*fout=fopen("c:\\dest.txt","wt");charbuf[MAXLEN];if((fin=fopen("c:\\test.txt","rt"))!=NULL){char*c=fgets(buf,MAXLEN,fin);while(..
分类:编程语言   时间:2014-05-12 02:57:48    阅读次数:251
unix文件操作函数
1. fopen函数1 #include 2 FILE *fopen(const char *path, const char *mode) 返回:文件顺利打开后,指向该流的文件就会被返回。如何文件打开失败则返回NULL,并把错误代码存在 errno 中。参数说明: mode: 1)r 以只读方式....
分类:其他好文   时间:2014-05-10 03:00:13    阅读次数:290
php函数
function Http_num() //浏览计数 在同目录里建立一个count文件,访问网页次数计算结果保存在这里count文件里{ $hanld=fopen(".count.txt","a"); fclose($hanld); ...
分类:Web程序   时间:2014-05-05 10:44:20    阅读次数:406
让你提前认识软件开发---学长的软件开发经验总结(18)
第1部分 重新认识C语言C语言中常用的文件操作函数总结及使用方法演示代码 1. C语言中常用的文件操作函数总结(1) fopen作用:打开文件。表头文件:#include 定义函数:FILE *fopen(const char *path, const char *mode);函数说明:参数path字符串包含欲打开的文件路径及文件名,参数mode字符串则代表着流形态。mode有下列几种形态字符串:...
分类:其他好文   时间:2014-05-03 21:38:17    阅读次数:279
用fseek和ftell获取文件的大小
#include #include #include int main(int argc,char *argv[]){ int n=0; FILE *fp; if((fp=fopen(argv[1],"r"))==NULL) { perror("fopen");...
分类:其他好文   时间:2014-05-02 18:05:54    阅读次数:308
php提取csv格式文件中的字符串出现的问题及解决办法
php带csv格式的数据要用到fgetcsv()函数。用这下面的语句$hd=fopen('test.csv','r'); $buf=fgetcsv($hd,1000,',');打开一个test.csv格式的文件,文件中的内容以","号分开。 取出的第一行代表自动含义,比如 id,messaget,time等等。 从第二行开始表示具体的数据,比如1,消息,12:00。 if($buf[1]...
分类:Web程序   时间:2014-04-30 22:16:38    阅读次数:385
php---下载功能
<?php $filename="胡主席好.pdf"; if(!file_exists($filename)) { echo "不存在此文件"; return; } $fp=fopen($filename,"r"); $file_size=filesize($filename); //配置头文件 /...
分类:Web程序   时间:2014-04-29 13:42:20    阅读次数:356
1109条   上一页 1 ... 109 110 111
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!