Search

폴더 리스트를 txt로 저장하기

When?

특정 폴더 안에 있는 파일 리스트를 txt로 출력하는 명령어.

1. 가장 간단한 방법

ls > filenames.txt
Python
복사

2. 폴더의 경로와 maxdepth 까지 명시해주기

find ~/docs -type f -maxdepth 1 > filenames.txt
Python
복사