python os.path.isfile 의 사용 오류 에 대한 상세 한 설명

2031 단어 pythonos.pathisfile
아래 의 이 몇 개의 문 구 는 어떤 문 제 를 알 아 냈 습 니까?

for file in os.listdir(path):
    if os.path.isfile(file) and os.path.splitext(file)[1] == '.txt':
      #  txt  ,     
곰 곰 이 생각해 보 니 맞 아.왜 os.path.isfile(file)이 false 로 돌 아 왔 을 까?

>>> os.listdir(path)
['cg.A.1.txt', 'cg.A.128.txt', 'cg.A.16.txt', 'cg.A.2.txt', 'cg.A.256.txt', 'cg.
A.32.txt', 'cg.A.4.txt', 'cg.A.512.txt', 'cg.A.64.txt', 'cg.A.8.txt', 'cg.B.1.tx
t', 'cg.B.128.txt', 'cg.B.16.txt', 'cg.B.2.txt', 'cg.B.256.txt', 'cg.B.32.txt',
'cg.B.4.txt', 'cg.B.512.txt', 'cg.B.64.txt', 'cg.B.8.txt', 'cg.C.1.txt', 'cg.C.1
28.txt', 'cg.C.16.txt', 'cg.C.2.txt', 'cg.C.256.txt', 'cg.C.32.txt', 'cg.C.4.txt
', 'cg.C.512.txt', 'cg.C.64.txt', 'cg.C.8.txt', 'cg.D.128.txt', 'cg.D.16.txt', '
cg.D.256.txt', 'cg.D.32.txt', 'cg.D.512.txt', 'cg.D.64.txt']
>>> files = os.listdir(path)
>>> os.path.isfile(files[1])
False
여러 번 시험 해 봤 는데 도 여전히 false 야.내 가 갈 게.무슨 귀신 이 야..............................................
Google 을 시작 합 니 다.일부 디 렉 터 리 작업 을 보 았 지만 결과 가 없습니다...
그래서 python 의 도움 을 살 펴 보고 드디어 답 을 찾 았 습 니 다.눈물 을 흘 리 며...............................................

os.path.isfile(path)
Return True if path is an existing regular file. This follows symbolic links, so both islink() and isfile() can be true for the same path.
메모:path 는 경로 입 니 다.
내 가 보 낸 것 은 파일 이름 이다.
해결 방법 은:

>>> os.path.isfile(os.path.join(path,files[1]))
True
해결!
이상 의 python os.path.isfile 의 사용 오류 에 대한 상세 한 설명 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 께 참고 가 되 고 저희 도 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기