0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VScode 残存ファイル消し方 残存ファイル調べ方(自分用メモ)

Posted at

残存ファイル調べるコマンド

全件一致(両端に必ずアスタリスクつける)じゃないと、ヒットしない
find ~/Library -iname "*vscode*" 2>/dev/null

残存ファイル 調べた結果

あ〜たくさんあんじゃんよ
/Users/chomechomesuke/Library/Application Support/Code/logs/20250216T155506/window1/exthost/vscode.github-authentication
/Users/chomechomesuke/Library/Application Support/Code/logs/20250216T155506/window1/exthost/vscode.github
/Users/chomechomesuke/Library/Application Support/Code/logs/20250216T155506/window1/exthost/vscode.git
/Users/chomechomesuke/Library/Application Support/Code/logs/20250216T155640/window1/exthost/vscode.github-authentication
/Users/chomechomesuke/Library/Application Support/Code/logs/20250216T155640/window1/exthost/vscode.github
/Users/chomechomesuke/Library/Application Support/Code/logs/20250216T155640/window1/exthost/vscode.git
/Users/chomechomesuke/Library/Application Support/Code/CachedExtensionVSIXs/ms-ceintl.vscode-language-pack-ja-1.97.2025021209
/Users/chomechomesuke/Library/Saved Application State/com.microsoft.VSCode.savedState
/Users/chomechomesuke/Library/Preferences/com.microsoft.VSCode.plist
/Users/chomechomesuke/Library/HTTPStorages/com.microsoft.VSCode
/Users/chomechomesuke/Library/Caches/com.microsoft.VSCode.ShipIt
/Users/chomechomesuke/Library/Caches/com.microsoft.VSCode

残存ファイル、消すコマンド

全部、消すべし!
rm -rf ~/Library/Application\ Support/Code
rm -rf ~/Library/Saved\ Application\ State/com.microsoft.VSCode.savedStat
rm -rf ~/Library/HTTPStorages/com.microsoft.VSCode
rm -rf ~/Library/Caches/com.microsoft.VSCode*
rm -rf /Users/myユーザー名/Library/Saved\ Application\ State/com.microsoft.VSCode.savedState
rm -f /Users/myユーザー名/Library/Preferences/com.microsoft.VSCode.plist
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?