일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- pandas
- 프로그래머스
- C#
- Visual Studio
- OpenCV
- 기타 연주
- 핑거스타일
- Docker
- C
- 컨테이너
- windows forms
- paramiko
- error
- Selenium
- 오류
- label
- pytorch
- 채보
- YOLO
- C++
- VS Code
- Linux
- LIST
- JSON
- mysql
- ubuntu
- Python
- pip
- Numpy
- SSH
- Today
- Total
목록디렉터리 (2)
기계는 거짓말하지 않는다
find command find(1) - Linux man page find(1) - Linux man page Name find - search for files in a directory hierarchy Synopsis find [-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression] Description This manual page documents the GNU version of find. GNU find searches the directory tree linux.die.net 다음은 간단한 사용 예이다. find "*.mp4" # 현재 경로의 모든 mp4 파일, 디렉터리 검색 find . -name "*.mp4" # 현재 경로와 현재..
shutil 모듈을 이용한다. 파일도 경로만 지정해주면 동일하다. 참고: shutil docs shutil — 고수준 파일 연산 — Python 3.10.4 문서 shutil — 고수준 파일 연산 소스 코드: Lib/shutil.py shutil 모듈은 파일과 파일 모음에 대한 여러 가지 고수준 연산을 제공합니다. 특히, 파일 복사와 삭제를 지원하는 함수가 제공됩니다. 개별 파일 docs.python.org 디렉터리 이동 asd 디렉터리 내에 asd.py 파일 존재, outdir 따로 존재. import shutil src = 'asd' dest = 'outdir' shutil.move(src, dest) asd 디렉터리가 outdir 디렉터리 하위로 이동한다. 디렉터리 복사 copy 함수가 여러개 존재..