|  | 
| 4 | 4 | # 1. https://docs.microsoft.com/zh-cn/powershell/scripting/samples/working-with-files-and-folders?view=powershell-7.1 | 
| 5 | 5 | # 2. https://docs.microsoft.com/zh-cn/powershell/scripting/samples/working-with-registry-keys?view=powershell-7.1 | 
| 6 | 6 | # | 
| 7 |  | -# the delete files | 
|  | 7 | +## THE DELETE FILES | 
| 8 | 8 | Get-ChildItem -Path . -include *.pyc -Recurse | Remove-Item | 
| 9 |  | -# the delete directory | 
| 10 |  | -Get-ChildItem-Path .-include __pycache__ -Recurse |Remove-Item | 
|  | 9 | +## THE DELETE DIRECTORY | 
|  | 10 | +# ./build/* | 
| 11 | 11 | Remove-Item -Path .\build\* -Recurse | 
|  | 12 | +# ./src/com.dvsnier.*.egg-info | 
|  | 13 | +Remove-Item -Path .\src\com.dvsnier.*.egg-info -Recurse | 
|  | 14 | +# Get-ChildItem -Path .\src\com.dvsnier.*.egg-info -Recurse | 
|  | 15 | +# ./dist/* | 
|  | 16 | +Remove-Item -Path .\dist\* -Recurse | 
|  | 17 | +# ./out/log/* | 
| 12 | 18 | Remove-Item -Path .\out\log\* -Recurse | 
|  | 19 | +# __pycache__ | 
|  | 20 | +Get-ChildItem -Path . -include __pycache__ -Recurse | Remove-Item | 
0 commit comments