python 폴 더 아래 의 모든 파일 을 찾 아 파일 을 읽 습 니 다.

1445 단어 python
폴 더 의 모든 파일 코드 찾기:
import os
FindPath = 'c:/Users/yang/Documents/python/'
FileNames = os.listdir(FindPath)
for file_name in FileNames:
    fullfilename=os.path.join(FindPath,file_name)  
    print fullfilename

출력:
c:/Users/yang/Documents/python/file.txt
c:/Users/yang/Documents/python/file_temp.txt
c:/Users/yang/Documents/python/read_file_name.py

파일 읽 기: caffe 생 성 요구 에 맞 게 줄 마다 그림 파일 의 이름 을 저장 하고 탭 을 추가 합 니 다.
fid = open('C:/Users/yang/Documents/python/file_temp.txt','r')
str = fid.readlines()
for line in str:
    linearr = line.strip().split(' ')
    print linearr

좋은 웹페이지 즐겨찾기