Skip to content

Latest commit

 

History

History
41 lines (23 loc) · 811 Bytes

show_download_history.md

File metadata and controls

41 lines (23 loc) · 811 Bytes

查看下载历史记录

历史记录位于数据库

~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV*

使用软件打开

> open -a MesaSQLite  ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 

使用命令行打开

sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'select LSQuarantineDataURLString from LSQuarantineEvent'

删除所有下载历史记录

> sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'delete from LSQuarantineEvent'

注意

>为命令提示符,命令中的引号为英文单引号.

参考资料