2013年7月31日

摘要: 先看看MSDN的解釋:stat(): Get status information on a file.Parameters: path: pointer to a string containing the path of existing file. buffer: pointer to a structure that stores results.int _stat( const char *path, struct _stat *buffer );結構體 _stat 的定义在 sys\stat.h 裏面,具體內容可自行查看,包括主要的字段為:st_gidNumeric ide... 阅读全文
posted @ 2013-07-31 15:56 小葫芦藤 阅读(764) 评论(0) 推荐(0) 编辑
摘要: stat,lstat,fstat1 函数都是获取文件(普通文件,目录,管道,socket,字符,块()的属性。函数原型#include int stat(const char *restrict pathname, struct stat *restrict buf);提供文件名字,获取文件对应属性。int fstat(int filedes, struct stat *buf);通过文件描述符获取文件对应的属性。int lstat(const char *restrict pathname, struct stat *restrict buf);连接文件描述命,获取文件属性。2 文件对应的属 阅读全文
posted @ 2013-07-31 15:24 小葫芦藤 阅读(318) 评论(0) 推荐(0) 编辑
摘要: source insight快捷键及使用技巧 退出程序 : Alt+F4重画屏幕 : Ctrl+Alt+Space完成语法 : Ctrl+E复制一行 : Ctrl+K恰好复制该位置右边的该行的字符 : Ctrl+Shift+K复制到剪贴板 : Ctrl+Del剪切一行 : Ctrl+U剪切该位置右边的该行的字符 : Ctrl+;剪切到剪贴板 : Ctrl+Shift+X剪切一个字 : Ctrl+,左边缩进 : F9右边缩进 : F10插入一行 : Ctrl+I插入新行 : Ctrl+Enter加入一行 : Ctrl+J从剪切板粘贴 : Ctrl+Ins粘贴一行 : Ctrl+P重复上一个动作 阅读全文
posted @ 2013-07-31 09:42 小葫芦藤 阅读(321) 评论(0) 推荐(0) 编辑

导航