이 페이지를 작성하는 시점에서 JFrog Artifactory는 NON-Ascii 파일 다운로드를 지원하지 않습니다.
이미 등록된 non-ascii character 파일 삭제 방법 가이드 드립니다.
UI 기능을 이용한 삭제
Artifact 목록에서 해당 파일 선택 > 마우스 우클릭 > Delete
REST API 사용
DeleteItem API (Delete) 를 이용해 삭제
JFrog Cli 사용
- [Cli download|JFrog CLI Download Site]
json spec file 생성
AQL query를 위한 json 파일 생성
- 예) repository name: my-local-repo, all-my-frogs 폴더 하위의 모든 파일 삭제, *.txt, props.* 파일 제외example.json{ "files": [ { "pattern": "my-local-repo/all-my-frogs/", "excludePatterns": ["*.txt","all-my-frog/props.*"] } ] }
JFrog Cli 명령으로 삭제
jfrog rt del --spec=example.json
Database Query 사용
- UI를 통해 삭제 대상의 checksum 확인
SQL query
DELETE FROM nodes WHERE sha1_actual = {sha_sum};