Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- line notify
- python filelist
- python
- python bot
- 다우지수
- 파이썬으로
- yahoo finace
- 코스닥 지수
- 파이썬 랜덤 숫자
- python directory
- 파이썬 메시지
- Excel
- 환율
- OpenPyXL
- python excel
- 알림 봇
- python xlrd
- 야후 파이낸스
- 나스탁
- 파이썬
- 주식
- 코스피 지수
- 나스닥
- 코스닥
- 시가총액
- python xlwt
- 파이썬 로또 번호
- 코스피
- 국내주식
- python openpyxl
Archives
- Today
- Total
keilab
현재 디렉터리에서 파일 목록 출력하기 본문
현재 디렉토리에서 특정 확장자의 파일 목록을 가져오는 코드
[filelist.py]
#-*- coding:utf-8 -*-
import os.path
folder=os.getcwd()
print 'current directory :%s' % folder
for filename in os.listdir(folder):
ext=filename.split('.')[-1]
if ext == 'exe':
print filename
[출력결과]
current directory :C:\Users\K\Desktop\malware
Lab01-01.exe
Lab01-02.exe
Lab01-03.exe
Lab01-04.exe
'Python' 카테고리의 다른 글
파이썬으로 로또 번호 뽑기(랜덤 숫자) (0) | 2022.07.27 |
---|---|
파이썬으로 오늘 날짜, 현재 시간 출력하기 (0) | 2022.07.20 |
파이썬으로 LINE Notify 봇 만들기 1 (0) | 2021.11.21 |
파이썬으로 엑셀 다루기(xlwt 사용법) (0) | 2018.08.09 |
파이썬으로 엑셀 다루기(xlrd 사용법) (0) | 2018.08.08 |