Enhancement originates from
With running the command teams cache remove, we remove the Teams caching folder.
|
switch (platform) { |
|
case 'win32': |
|
cmd = 'cd %userprofile% && rmdir /s /q AppData\\Roaming\\Microsoft\\Teams'; |
|
break; |
|
case 'darwin': |
|
cmd = 'rm -r ~/Library/Application\\ Support/Microsoft/Teams'; |
|
break; |
|
} |
The idea here would be to first check if the folder exists before we remove it.
Enhancement originates from
teams cache removecommand. Closes #3205 #3224 (review)With running the command
teams cache remove, we remove the Teams caching folder.cli-microsoft365/src/m365/teams/commands/cache/cache-remove.ts
Lines 126 to 133 in b580b06
The idea here would be to first check if the folder exists before we remove it.