python 資料夾下檔案及資料夾名稱獲取

2021-10-10 08:55:00 字數 625 閱讀 9356

// python 資料夾下檔案及資料夾名稱獲取

import os

dirct =

'd:/data'

dirlist=

filelist=

files=os.

listdir

(dirct) #資料夾下所有目錄的列表

print

('files:'

,files)

for f in files:

if os.path.

isdir

(dirct +

'/'+f)

: #這裡是絕對路徑,該句判斷目錄是否是資料夾

dirlist.

(f) elif os.path.

isfile

(dirct +

'/'+f)

:#這裡是絕對路徑,該句判斷目錄是否是檔案

filelist.

(f)print

("資料夾有:"

,dirlist)

print

("檔案有:"

,filelist)

注:os.path.exists(path):判斷路徑path是否存在

python 遍歷資料夾下檔案

需求描述 1 讀取指定目錄下的所有資料集檔案 2 讀取指定檔案,輸出檔案資料 3 儲存到指定目錄 實現過程 如下 coding utf 8 created on thu may 10 17 02 40 2018 author admin import os import pandas as pd i...

python遍歷資料夾下檔案

在讀檔案的時候往往需要遍歷資料夾,python的os.path包含了很多檔案 資料夾操作的方法。下面列出 os.path.abspath path 返回絕對路徑 os.path.basename path 返回檔名 os.path.commonprefix list 返回多個路徑中,所有path共有...

python資料夾下檔案重新命名

python資料夾下檔案重新命名 usr bin env python coding utf 8 author jia shilin 本 主要改path目錄下的檔名稱,如原來為 a.txt,b.txt 改為 1a.txt,2b.txt import sys import os def cur fil...