码迷,mamicode.com
首页 >  
搜索关键字:stat    ( 16589个结果
4.1 对每个命令行参数打印文件类型
file/filetype.c #include "apue.h"intmain(int argc, char *argv[]){ int i; struct stat buf; char *ptr; for (i = 1; i < argc; i++) { printf("%s: ", argv[...
分类:其他好文   时间:2014-07-18 23:38:27    阅读次数:412
【linux c learn 之stat】获取文件的属性
NAME        stat 获取文件属性 这个函数位于头文件中 函数原型: int stat(const char *path, struct stat *buf); 参数: path  文件路径+文件名 buf     指向buffer的指针 返回值: -1   遇到错误 0    成功返回 函数作用: 把path文件的信息复制到指针buf所指的结构体中。...
分类:系统相关   时间:2014-07-18 21:36:18    阅读次数:263
Android下获取手机和SD卡的总空间和可用空间
获取SD卡的总空间和可用空间 File path = Environment.getExternalStorageDirectory(); StatFs stat = new StatFs(path.getPath()); long blockSize = stat.getBlockSize(); long totalBlocks = stat.getBlockCount(); long ava...
分类:移动开发   时间:2014-07-18 21:22:16    阅读次数:247
字符串转整数问题
要点:要考虑到各种非法参数。 实现: /********************************** 字符串转整数 by Rowandjj 2014/7/15 ***********************************/ #include #include//不加这个头文件在九度oj上会编译错误 using namespace std; int stat...
分类:其他好文   时间:2014-07-16 17:35:09    阅读次数:194
java中的按值传递和按引用传递
先使用int实验: public class TTEST { private static List mList = new LinkedList(); public static void main(String[] args) { int a = 0; changeA(a); System.out.println("a = "+a); } public stat...
分类:编程语言   时间:2014-07-16 17:19:33    阅读次数:247
Linux 下设置静态IP
首先进入network-scripts文件夹 #:cd /etc/sysconfig/network-scripts 然后使用 vi 编辑ifcfg-eth0 #:vi ifcfg-eth0 #仅eth0网卡一个DEVICE = eth0 #设备名称BOOTPROTO = stat...
分类:系统相关   时间:2014-07-15 08:39:27    阅读次数:284
APUE学习笔记:第四章 文件和目录
4.1 引言本章将描述文件的特征和文件的性质4.2 stat、fstat和lstat函数#includeint stat(const char *restrict pathname,struct stat *restrict buf);int fstat(int filedes,struct sta...
分类:其他好文   时间:2014-07-13 20:36:36    阅读次数:283
在linux下怎么查询oracle
1查询oracle版本select*fromv$version2oracle运行状态selectstatusfromv$instance;是RAC集群,可以使用CRS命令查看整个集群的实例运行状态: su-oracle crs_stat-t
分类:数据库   时间:2014-07-10 17:57:22    阅读次数:433
类的相互依赖导致StackOverflowError
public class SchoolServiceImpl { private static SchoolServiceImpl instance = new SchoolServiceImpl(); private static ClassServiceImpl classServiceImpl = ClassServiceImpl.getInstanse(); public stat...
分类:其他好文   时间:2014-07-08 16:53:05    阅读次数:166
Leetcode Valid Number
Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:其他好文   时间:2014-07-05 17:20:00    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!