import os
path = os.getcwd()
filename = []
filedir = []
full_filename = []
full_filedir = []
name_0 = []
ext_0 = []
t = 0
'파일 명'
with os.scandir(path) as entries:
for entry in entries:
if entry.is_file():
filename.append(entry.name)
'파일 디렉토리'
with os.scandir(path) as entries:
for entry in entries:
if entry.is_dir():
filedir.append(entry.name)
'경로+파일명'
for t in range(0,len(filename)):
full_filename.append(path + '\\'+ filename[t])
'경로+디렉토리'
for t in range(0,len(filedir)):
full_filedir.append(path + '\\'+ filedir[t])
'확장자 분리'
for t in range(0,len(filename)):
name, ext = os.path.splitext(filename[t])
name_0.append(name)
ext_0.append(ext)
'Python' 카테고리의 다른 글
Log File -> Cfg File -> CSV File (fortigate 방화벽 정책 한정) (0) | 2022.08.31 |
---|---|
R&S 파이썬 자동화_Input Command (0) | 2022.08.29 |
Fortigate 방화벽 Hit Count 수집 (export 안되는 버전 전용) (수정1) (0) | 2022.08.19 |
R&S 파이썬 자동화 (0) | 2022.08.12 |
텍스트 수정 파일 제작기 - 04 (0) | 2022.07.11 |