python os.chdir() 用法

时间:2021-08-20 14:13:57

概述

os.chdir() 方法用于改变当前工作目录到指定的路径。

语法

chdir()方法语法格式如下:

os.chdir(path)

参数

  • path -- 要切换到的新路径。

返回值

如果允许访问返回 True , 否则返回False。

实例

以下实例演示了 chdir() 方法的使用:

#!/usr/bin/python
# -*- coding: UTF-8 -*- import os, sys path = "/tmp" # 查看当前工作目录
retval = os.getcwd()
print "当前工作目录为 %s" % retval # 修改当前工作目录
os.chdir( path ) # 查看修改后的工作目录
retval = os.getcwd() print "目录修改成功 %s" % retval

执行以上程序输出结果为:

当前工作目录为 /www
目录修改成功 /tmp Python 拷贝子文件到新文件夹下面
import os
import shutil print('输入格式:E:\myprojectnew\jupyter\整理文件夹\示例')
path = input('请键入需要整理的文件夹地址:')
new_path = input('请键入要复制到的文件夹地址:') for root, dirs, files in os.walk(path):
for i in range(len(files)):
#print(files[i])
if (files[i][-3:] == 'jpg') or (files[i][-3:] == 'png') or (files[i][-3:] == 'JPG'):
file_path = root+'/'+files[i]
new_file_path = new_path+ '/'+ files[i]
shutil.copy(file_path,new_file_path) #yn_close = input('是否退出?')