python os.chdir() 用法
阿新 • • 發佈:2019-01-11
概述
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('是否退出?')