开发者社区> 问答> 正文

python怎么读取磁盘

python怎么读取磁盘

展开
收起
云计算小粉 2018-05-10 20:10:47 2276 0
1 条回答
写回答
取消 提交回答
  • 获取磁盘信息

    !/usr/bin/env python

    import subprocess

    Command 1

    def uname_func():

    uname="uname"
    uname_arg="-a"
    print "Gathering system information with %s command:\n" % uname
    subprocess.call([uname,uname_arg])
    

    command 2

    def disk_func():

    diskspace = "df"
    diskspace_arg="-h"
    print "Gathering diskspace information %s command:\n" % diskspace
    subprocess.call([diskspace,diskspace_arg])
    

    def main():

    uname_func()
    disk_func()
    

    main()

    2019-07-17 22:22:34
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载