반응형
Rust/Rust 강좌2023. 10. 13. 22:18Rust 지정한 디렉토리의 파일/디렉토리 리스트 가져오기

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..

반응형
image