zoukankan      html  css  js  c++  java
  • 57-Python的os模块

    import os
    
    os.getcwd()  # 显示当前路径
    os.listdir()  # ls -a
    os.listdir('/tmp')  # ls -a /tmp
    os.mkdir('/tmp/mydemo')  # mkdir /tmp/mydemo
    os.chdir('/tmp/mydemo')  # cd /tmp/mydemo
    os.listdir()
    os.mknod('test.txt')  # touch test.txt
    os.symlink('/etc/hosts', 'zhuji')  # ln -s /etc/hosts zhuji
    os.path.isfile('test.txt')  # 判断test.txt是不是文件
    os.path.islink('zhuji')  # 判断zhuji是不是软链接
    os.path.isdir('/etc')
    os.path.exists('/tmp')  # 判断是否存在
    os.path.basename('/tmp/abc/aaa.txt')
    os.path.dirname('/tmp/abc/aaa.txt')
    os.path.split('/tmp/abc/aaa.txt')
    os.path.join('/home/tom', 'xyz.txt')
    os.path.abspath('test.txt')  # 返回当前目录test.txt的绝对路径
  • 相关阅读:
    python解析网页
    node.js 爬虫
    c++ split实现
    foldl foldr
    爬虫http header gzip
    命令[10]
    命令[08]
    命令[15]
    命令[13]
    命令[11]
  • 原文地址:https://www.cnblogs.com/hejianping/p/10948018.html
Copyright © 2011-2022 走看看