python 對資料夾夾檔案內容的操作。
# -*- coding:utf-8 -*-
# author:
import os,glob
path=r'e:\persona_project\6s\data\landsat8\lc81260362017228lgn00'
# os.walk迴圈當前目錄與下級目錄,直到目錄全部遍歷完
for root, dirs, rsfiles in os.walk(path):
print('-'*1000)
print(root)#所指的是當前正在遍歷的這個資料夾的本身的位址
print(dirs)#內容是該資料夾中所有的目錄的名字(不包括子目錄)
print(rsfiles)#內容是該資料夾中所有的檔案(不包括子目錄)
print(glob.glob(os.path.join(path, '*mtl.txt')))#某類檔案的全路徑列表
結果: python中對檔案 資料夾的操作
python中對檔案 資料夾的操作需要涉及到os模組和shutil模組。建立檔案 1 os.mknod test.txt 建立空檔案 2 open test.txt w 直接開啟乙個檔案,如果檔案不存在則建立檔案 建立目錄 os.mkdir file 建立目錄 複製檔案 shutil.copyfil...
python中對檔案 資料夾的操作
python中對檔案 資料夾的操作需要涉及到 os模組和 shutil 模組。建立檔案 1 os.mknod test.txt 建立空檔案 2 open test.txt w 直接開啟乙個檔案,如果檔案不存在則建立檔案 建立目錄 os.mkdir file 建立目錄 複製檔案 shutil.copy...
python中對檔案 資料夾的操作
python中對檔案 資料夾的操作需要涉及到os模組和shutil模組。建立檔案 1 os.mknod test.txt 建立空檔案 2 open test.txt w 直接開啟乙個檔案,如果檔案不存在則建立檔案 建立目錄 os.mkdir file 建立目錄 複製檔案 shutil.copyfil...