zoukankan      html  css  js  c++  java
  • Python文件或目录操作的常用函数

    ◆ os.listdir(path)

    Return a list containing the names of the entries in the directory given by path. The list is in arbitrary order. It does not include the special entries '.' and '..' even if they are present in the directory.


    ◆ os.getcwd() method displays the current working directory


    ◆ os.chdir() method to change the current directory


    ◆ other file and directory operation functions:
    os.rename(current_file_name, new_file_name)
    os.remove(file_name)
    os.mkdir("newdir")

    os.rmdir('dirname')


    ◆ 内置变量__file__可以获得文件名(有可能是相对路径名),进一步调用 os.path.realpath(__file__)可以获得该文件的路径完整路径名(并且已经展开链接文件)。


    ◆ os.path.dirname(filename)可以获得文件所在的目录名。


    ◆ os.path.basename(filename)可以获得完整路径名最后的文件名,如果是一个目录,则返回""。


    ◆ os.path.join(path1, path2)可以将多个路径参数连接,这也是一个常用的函数。


    ◆ os.curdir和os.pardir是两个常量字符串:"."和"..",分别表示当前目录和上一级目录的字符串。


    ◆ 获取当前程序所在目录的完整路径

    _curpath=os.path.normpath( os.path.join( os.getcwd(), os.path.dirname(__file__) )  )



  • 相关阅读:
    Python入门:局部变量与全局变量2
    Python入门:局部变量与全局变量1
    Python入门:函数参数1
    Python入门:文件操作1
    Python入门:集合操作
    Python入门:用字典实现三级菜单
    Python入门:购物车实例
    Python:循环
    git 提交指定提交时用户名
    mysql 判断null 和 空字符串
  • 原文地址:https://www.cnblogs.com/suncoolcat/p/3315289.html
Copyright © 2011-2022 走看看