python中的os模块几个常用的方法

时间:2022-01-04 23:58:27

 

 

os.getcwd() 得到当前工作目录,即当前python脚本工作的目录路径

python中的os模块几个常用的方法

os.remove(file):删除一个文件

os.mkdir(name):创建目录

python中的os模块几个常用的方法

os.path.exists(name):判断是否存在文件或目录name

python中的os模块几个常用的方法

os.listdir(dirname):列出dirname下的目录和文件

python中的os模块几个常用的方法

os.chdir(dirname):改变工作目录到dirname

python中的os模块几个常用的方法