특정 폴더의 바로 밑에 해당하는 폴더명 구하기
for sub_path in os.listdir(rc_result_folder):
sub_dir = os.path.join(rc_result_folder, sub_path)
if os.path.isdir(sub_dir):
print 'rc model = ' + sub_dir
# end of if
# end of for
for sub_path in os.listdir(rc_result_folder):
sub_dir = os.path.join(rc_result_folder, sub_path)
if os.path.isdir(sub_dir):
print 'rc model = ' + sub_dir
# end of if
# end of for
'컴퓨터 > Python' 카테고리의 다른 글
Python] 다른 프로그램 실행 (0) | 2010.01.19 |
---|---|
Python] Linux에서 Python 설치 (0) | 2009.10.21 |
Python] 오늘의 날짜 시간 구하기 (0) | 2009.10.07 |
Python]파일의 수정 날짜 출력하기 (0) | 2009.10.06 |
Python] SSH connection using Paramiko on Windows OS (0) | 2009.09.13 |