파일리스트 조회 curl -X PROPFIND -u 'username:password' '조회대상 URL' 파일 다운로드 curl -o {저장할 파일 경로} -u 'username:password' '다운로드할 URL' 파일 업로드 curl -T {업로드할 파일 경로} -u 'username:password' '업로드할 URL' 파일 삭제 curl -X DELETE -u 'user:password' 'http://example.com/uploads/example.txt' 예를 들어, 사용자 이름이 user이고 비밀번호가 password인 WebDAV 서버의 uploads 폴더에서 example.txt 파일을 삭제하려면 다음과 같이 입력합니다. 폴더 잠금 확인 curl -X PROPFIND -u 'user..