windows服务器下powershell删除文件或文件
PowerShell
PowerShell/PowerShell: PowerShell 是由微软开发的命令行外壳程序和脚本环境,支持任务自动化和配置管理。它包含了丰富的.NET框架功能,适用于Windows和多个非Windows平台,提供了一种强大而灵活的方式来控制和自动执行系统管理任务。
项目地址:https://gitcode.com/gh_mirrors/po/PowerShell
免费下载资源
·
1.清除文件C:/Script/test.txt
Remove-Item c:/scripts test.txt
2.删除所有在 C:/Scripts 里的文件
Remove-Item c:/scripts/*
3.绕过命令行
Remove-Item c:/scripts/* -recurse
4.排除某类型文件(例如.wav类型)
Remove-Item c:/scripts/* -exclude *.wav
5.仅仅删除某类型文件(例如.txt)
Remove-Item c:/scripts/* -include *.txt
另外,4和5可以结合使用
Remove-Item c:/scripts/* -exclude .wav -include .txt
GitHub 加速计划 / po / PowerShell
44.28 K
7.17 K
下载
PowerShell/PowerShell: PowerShell 是由微软开发的命令行外壳程序和脚本环境,支持任务自动化和配置管理。它包含了丰富的.NET框架功能,适用于Windows和多个非Windows平台,提供了一种强大而灵活的方式来控制和自动执行系统管理任务。
最近提交(Master分支:2 个月前 )
a1774fd9
2 个月前
5ad1f1d2
2 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)