博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python文件或目录操作的常用函数
阅读量:5075 次
发布时间:2019-06-12

本文共 953 字,大约阅读时间需要 3 分钟。

◆ 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__) )  )

 

转载于:https://www.cnblogs.com/suncoolcat/p/3315289.html

你可能感兴趣的文章
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>
PHP count down
查看>>
JVM参数调优:Eclipse启动实践
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
python的列表与shell的数组
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
python标准库——queue模块 的queue类(单向队列)
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>