Tuesday, January 09, 2024

PowerShell Quick Tip: Delete a folder recursively

PowerShell Quick Tip: Delete a folder recursively

PS C:\> Remove-Item -Recurse -Force .\folder_to_delete\

Or using alias

PS C:\> rm -r -fo .\folder_to_delete\

No comments:

Qt console hello world

Qt console hello world This guide shows how a Qt console hello world looks like. ▣ Open  Qt Creator  and click on  Create Project... ...