Powershell - 删除文件内容

cmdlet

Clear-Content cmdlet 可用于删除 txt 文件的内容。

在此示例中,我们将删除 test.txt 的内容。

Clear-Content D:\temp\test\test.txt

现在,如果我们读取 test.txt 的内容。

Get-Content D:\temp\test\test.txt

❮ powershell_files_io.html