码迷,mamicode.com
首页 >  
搜索关键字:fd    ( 1602个结果
IIS上架设https网站证书处理备忘
1. 免费SSL证书申请https://www.startssl.com教程:http://hxs.fd.fj.cn/?action=show&id=132. 证书转换申请到的证书有两个关键文件(适用于openssl文本格式), xxx.key & xxx.crt,要在IIS上安装需要转换成pfx格...
分类:Web程序   时间:2014-08-01 10:47:01    阅读次数:197
mkstemp、mktemp、TemporaryFile区别
mkstemp fd, name = tempfile.mkstemp 创建临时文件,并且将文件打开 >>>?import?tempfile >>>?tempfile.mkstemp() (3,?‘/tmp/tmpkgWSR1‘) 查看/tmp目录,看到已经生成了真实的文件 lsof查询打开的临时文件 ...
分类:其他好文   时间:2014-07-30 15:08:14    阅读次数:254
select、poll、epoll的比较
linux提供了select、poll、epoll接口来实现IO复用,三者的原型如下所示,本文从参数、实现、性能等方面对三者进行对比。int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct t...
分类:其他好文   时间:2014-07-29 20:41:12    阅读次数:338
select,poll,epoll用法
http://blog.csdn.net/sunboy_2050/article/details/6126712select用法#include #include #include #include int select(int n, fd_set *readfds, fd_set *writ...
分类:其他好文   时间:2014-07-29 20:38:45    阅读次数:384
struct pollfd
struct pollfd2010年04月15日 星期四 下午 03:59int poll (struct pollfd *fds, size_t nfds , int timeout);struct pollfd {int fd; /* 文件描述符 */short events; /* 等待的事....
分类:其他好文   时间:2014-07-29 17:30:22    阅读次数:288
open(/dev/ietctl, O_RDWR) 参数含义
这是文件I/O的常用函数,open函数,open函数用来打开一个设备,他返回的是一个整型变量,如果这个值等于-1,说明打开文件出现错误,如果为大于0的值,那么这个值代表的就是文件描述符。一般的写法是if((fd=open("...
分类:其他好文   时间:2014-07-29 16:09:29    阅读次数:290
Linux C代码分析文件权限
判断/home下有没有文件aaa.txt,如果存在则提示错误,如果文件不存在则创建且文件最终权限为644。#include<stdio.h> #include<fcntl.h> intmain(void){ intfd; fd=open("/home/aaa.txt",O_WRONLY|O_CREAT|O_EXCL,0666); if(fd==-1) printf("Error:Fileexists.\n");..
分类:系统相关   时间:2014-07-29 16:01:59    阅读次数:328
Unix/Linux环境C编程入门教程(40) 初识文件操作
??1.函数介绍                            close(关闭文件) 相关函数 open,fcntl,shutdown,unlink,fclose 表头文件 #include 定义函数 int close(int fd); 函数说明 当使用完文件后若已不再需...
分类:系统相关   时间:2014-07-29 14:17:39    阅读次数:391
read函数
#include ssize_t read(int fd, void *buf, size_t count);DESCRIPTION read() attempts to read up to count bytes from file descriptor fd into the buffer.....
分类:其他好文   时间:2014-07-28 23:56:34    阅读次数:548
mac关闭指定端口
1.0 先执行如下命令:lsof -i:端口号1.1 会有类似下面的结果:COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEWebProces 42624 davidzhang 5u I...
分类:其他好文   时间:2014-07-28 19:09:44    阅读次数:230
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!