python获得磁盘剩余空间 statvfs,pythonstatvfs,[Python]代码
python获得磁盘剩余空间 statvfs,pythonstatvfs,[Python]代码
[Python]代码
[mps@mps-1 ~]$ python Python 2.4.3 (#1, Sep 3 2009, 15:37:37) [GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> import statvfs >>> vfs=os.statvfs("/home") >>> vfs (4096, 4096, 70959944, 70058799, 66396080, 73269248, 73234981, 73234981, 0, 255) >>> dir(statvfs) ['F_BAVAIL', 'F_BFREE', 'F_BLOCKS', 'F_BSIZE', 'F_FAVAIL', 'F_FFREE', 'F_FILES', 'F_FLAG', 'F_FRSIZE', 'F_NAMEMAX', '__builtins__', '__doc__', '__file__', '__name__'] >>> available=vfs[statvfs.F_BAVAIL]*vfs[statvfs.F_BSIZE]/(1024*1024*1024) >>> available 253 >>> capacity=vfs[statvfs.F_BLOCKS]*vfs[statvfs.F_BSIZE]/(1024*1024*1024) >>> capacity 270 >>> used=capacity-available >>> used 17 >>>
相关内容
- python写的群发邮件系统 有点瑕疵 为了大家讨论下~~~,
- 整数/分数四则运算表达式分析并给出详细运算过程,四
- 仿内置用法 按key分组成嵌套字典,key嵌套,在日常开发
- webpy的form 元素radio单选框bug修复,webpyradio,class Radio(
- 用Python生成目录树,Python生成目录树,[Python]代码#
- Inverse power method applied to a tridiagonal matrix in Python,inve
- 把图片列表合成一个GIF动画图片,图片列表gif动画,[P
- 用Python写个翻译工具,Python写翻译工具,[Python]代码
- python中使用sharp模块的简单范例,pythonsharp,from shapes
- 输入地名获得当地天气预报,地名当地天气预报,weath
评论关闭