[파이썬 Example #005] 디렉토리 다루기

2019. 10. 16. 11:55컴퓨터_Com/파이썬 지식_Things to remember

1. 현재 폴더 확인, 폴더 이동

1
2
3
4
5
6
7
import os
 
print(os.getcwd()) #현재 폴더 확인
 
os.chdir('/home/student/bumhee/02_study/04_odin'#폴더 이동하기
 
print(os.getcwd())
cs

 

2. 현재 폴더에 있는 파일 리스팅

1
2
3
4
5
6
7
import os
 
all_file_list = os.listdir() # 현재 폴더의 모든 파일 리스트
 
inp_file_list = [file for file in all_file_list if file.endswith(".inp")]
 
print("file_list: {}".format(inp_file_list))
cs