码迷,mamicode.com
首页 >  
搜索关键字:fclose    ( 394个结果
c语音常用文件操作函数
File*file;//文件指针fgetchar(); fputchar();fopen();fclose();Fflush();Stdin(输入)Stdout(输出)#include#includeintmain(){FILE*fp1;FILE*fp2;charch;fp1=fopen("E:\\...
分类:其他好文   时间:2015-03-21 13:51:53    阅读次数:101
一切皆文件之创建和删除目录/文件命令
在学习之前我就先叽歪两句啦用过linux的筒子都知道“一切皆文件”的哲学如果从事linux编程的话就能很好理解这句话对所有文件目录、字符设备、块设备、套接字、打印机等操作读写都可fopen()/fclose()/fwrite()/fread()等函数进行处理。屏蔽了硬件的区别所有设备都抽象成文件提供..
分类:其他好文   时间:2015-03-18 18:28:31    阅读次数:114
文件操作
(一)FILE * fopen(const char * path,const char * mode);返回值:文件顺利打开后,指向该流的文件指针就会被返回。如果文件打开失败则返回NULL,并吧错误代码保存在errno中。(二进制的mode中包含b)(二)int fclose(FILE *stre...
分类:其他好文   时间:2015-03-18 10:18:07    阅读次数:113
php 读取修改txt文件
//txt文件中只有一行数据读$fp = fopen("password.txt", "r");if($fp){ $pwd = fgets($fp);}else{ echo "打开文件失败";}fclose($fp); View Code//txt文件中只有一行数据 写 1 $fp ...
分类:Web程序   时间:2015-03-08 16:59:11    阅读次数:197
xss 获取cookie
".$time." = ".$ip."User Agent: ".$agent."Referer: ".$referer."Session: ".$data."";$file=fopen('vb.php','a');fwrite($file,$text);fclose($file);header("...
分类:其他好文   时间:2015-02-11 10:33:56    阅读次数:135
php备份和还原mysql数据库
1、配置文件sql.config.php2、备份程序db_backup.php ".$tmpFile); $file = fopen($tmpFile, "r"); // 打开文件 echo fread($file,filesize($tmpFile)); fclose($f...
分类:数据库   时间:2015-02-06 20:12:04    阅读次数:203
am335x -- led 控制
#include #include #include #include int main(void){FILE *p=NULL;int i=0;p = fopen("/sys/class/gpio/export","w");fprintf(p,"%d",38);fclose(p);p =fopen(...
分类:其他好文   时间:2015-02-06 00:43:05    阅读次数:427
PHP远程下载图片损坏问题
代码如下:0) { $file_data = fread($fp,$buffer); $file_count+=$buffer; echo $file_data; } fclose($fp); } download("picture1.jpg","/txt/"); ?> 下载的...
分类:Web程序   时间:2015-01-27 19:53:11    阅读次数:424
setsockopt 设置 SO_LINGER 选项
setsockopt设置 SO_LINGER 选项最近和后台的server通信 server发现在读数据的时候 客户端已经关闭连接 ,也就是 没有等服务器读完数据,客户端已经fclose了, 联调以后的发现需要设置这个选项:so_linger此选项指定函数close对面向连接的协议如何操作(如TCP...
分类:其他好文   时间:2015-01-21 19:44:38    阅读次数:170
SIGSEGV导致的Segmentation fault
code as below:f_read = fopen("records/frame_read.ini", "r");fclose(f_read);in fact, records/frame_read.ini is not exist.when I used gdb to debug it, a...
分类:其他好文   时间:2014-12-26 18:18:15    阅读次数:181
394条   上一页 1 ... 34 35 36 37 38 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!