지정한 디렉토리의 하위 디렉토리 목록을 구하는 파이썬 예제코드입니다. 2023. 11. 10 최초작성 import os # 하위 디렉토리 목록을 얻고 싶은 디렉토리를 지정합니다. current_directory = 'c:\\windows' # current_directory에 있는 파일과 디렉토리가 모두 출력됩니다. get_list = os.listdir(current_directory) print(get_list) print() subdirectories = [] for entry in get_list: # 파일 또는 디렉토리에 대한 전체 경로를 얻습니다. full_path = os.path.join(current_directory, entry) # 전체 경로로 디렉토리인지 검사해야 합니다. if os..
지정한 디렉토리에 있는 파일 목록록을 가져오는 Python 예제 코드입니다. 재귀적으로 하위 디렉토리에 있는 파일 목록까지 가져옵니다. 2023. 1. 21 최초작성 2023. 6. 2 최종수정 다음과 같은 디렉토리 구조에서 test를 경로로 입력하여 테스트했습니다. 실행 결과입니다. test 디렉토리 아래에 있는 A,B 디렉토리와 B 디렉토리 아래에 있는 33 디렉토리에 있는 파일 목록까지 보여줍니다. 윈도우에서 실행해서 출력 결과에 \와 /가 뒤섞여 있습니다. ./test/1 ./test/2 ./test/3 ./test\A/11-1 ./test\A/11-2 ./test\B/22-1 ./test\B/22-2 ./test\B\33/33-1 ./test\B\33/33-2 사용한 전체 코드입니다. impor..
Rust를 사용하여 지정한 디렉토리에 있는 모든 파일/하위 디렉토리 리스트를 가져오는 코드입니다. 2023. 8. 20 최초작성 새로운 프로젝트 hello_path를 생성합니다. % cargo new hello_path Created binary (application) `hello_path` package 프로젝트 폴더 hello_path안에 다른 폴더,파일과 함께 Cargo.toml 파일이 생성됩니다. % cd hello_path % ls -al total 16 drwxr-xr-x 6 webnautes staff 192 8 21 23:07 . drwxr-xr-x+ 69 webnautes staff 2208 8 21 23:07 .. drwxr-xr-x 9 webnautes staff 288 8 21 2..
윈도우의 명령 프롬프트에서 하위 디렉토리 포함하여 디렉토리 목록을 출력하는 방법입니다. 2021. 10. 27 - 최초작성 현재 위치의 하위 디렉토리 목록을 출력해주는 명령어입니다. dir /A:D /B /S 실행시켜보면 현재 디렉토리 목록을 출력해주고 나서 각각의 디렉토리의 하위 디렉토리를 출력해주는 것을 볼 수 있습니다. C:\Users\webnautes\Test>dir /A:D /B /S C:\Users\webnautes\Test\a C:\Users\webnautes\Test\b C:\Users\webnautes\Test\c C:\Users\webnautes\Test\a\1 C:\Users\webnautes\Test\a\2 C:\Users\webnautes\Test\a\3 C:\Users\webna..