Answers:
打开Finder并导航到〜/ Library / Application Support / Skype /。“〜”符号表示您的主文件夹。要查找您的主文件夹,请打开Finder,然后在主菜单中选择Go> Home或按Command(Apple)+ Shift + H键。它是包含Skype名称的文件夹。
修改后可能需要重新启动应用程序。
资料来源:https://support.skype.com/en/faq/FA10888/how-do-i-manage-my-conversation-history-in-skype-for-mac
此外,请尝试此位置:/Library/Application Support/
,因为使用波形符号时会有所不同。
此外,可以找到存储文件~/Library/Containers/com.microsoft.SkypeForBusiness
,这是根据This Post的用户文件夹
~/Library/Containers/com.microsoft.SkypeForBusiness
我把一个小的shell脚本放在一起做这个,注意在我的测试中这没有破坏任何东西,但这样做需要你自担风险。
这也是Skype for Business Specific。
#!/bin/sh
# Kill existing Skype Session
kill -9 `pgrep -f Skype`
# Change into the application data folder
cd ~/Library/Containers/com.microsoft.SkypeForBusiness/Data/Library/Application\ Support/com.microsoft.SkypeForBusiness
# Remove all Conversations
sqlite3 DataStore.sqlite "delete from Conversation"
# Remove all Conversation items
sqlite3 DataStore.sqlite "delete from ConversationHistoryItem"
# Restart Skype