1. 程式人生 > >python os.chdir() 用法

python os.chdir() 用法

brush files inpu 目錄修改 python imp lose close 輸入

概述

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(‘是否退出?‘)

  

 

python os.chdir() 用法