We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0188e commit bbb379aCopy full SHA for bbb379a
.rmcache.ps1
@@ -0,0 +1,12 @@
1
+#
2
+# the airticle link reference:
3
4
+# 1. https://docs.microsoft.com/zh-cn/powershell/scripting/samples/working-with-files-and-folders?view=powershell-7.1
5
+# 2. https://docs.microsoft.com/zh-cn/powershell/scripting/samples/working-with-registry-keys?view=powershell-7.1
6
7
+# the delete files
8
+Get-ChildItem -Path . -include *.pyc -Recurse | Remove-Item
9
+# the delete directory
10
+Get-ChildItem -Path . -include __pycache__ -Recurse | Remove-Item
11
+Remove-Item -Path .\build\* -Recurse
12
+Remove-Item -Path .\out\log\* -Recurse
0 commit comments