在我們做深度學習的資料處理的時候,需要用到資料集的 train.txt ,也就是遍歷指定路徑資料夾下面的路徑和名字,然後生成乙個 train.txt ,下面是python的一種遍歷方法。
import os
import numpy as np
defcreate_txt
(name, path, file_image)
: txt_path = path + name +
'.txt'
txt =
open
(txt_path,
'w')
for i in
(file_image)
:print
(i) image_dir = os.path.join(
'c:/users/lenovo/desktop/打標分類/sum/sample/'
'c:/users/lenovo/desktop/打標分類/sum/sample/'
file_image = read_file(path1)
create_txt(
'train',''
, file_image)
執行後生成的 train.txt 會在這個 py 檔案的同級目錄下。 資料夾下的檔案遍歷 python
概述 細節描述及實現總結 一.概述 整體概述 常見問題如 資料夾下面檔案的查詢 檔名及檔案內容的特定需要的檢索 前提是需要資料夾下面檔案的遍歷操作,故在此列出。功能概述 遍歷資料夾 包含子目錄 訪問資料夾下面的檔案並記錄其絕對路徑 二.細節描述及實現 細節描述 printpath level,pat...
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共有...