Powershell - 创建文本文件

cmdlet

New-Item cmdlet 用于创建文本文件,Set-Content cmdlet 用于将内容放入其中。

步骤 1

在此示例中,我们将创建一个名为 test.txt 的新文本文件

在 PowerShell ISE 控制台中键入以下命令

New-Item D:\temp\test\test.txt

可以看到D:\temp\test目录下创建的test.txt。

步骤 2

在此示例中,我们将内容添加到 test.txt。

在 PowerShell ISE 控制台中键入以下命令

Set-Content D:\temp\test\test.txt 'Welcome to TutorialsPoint'

步骤 3

在此示例中,我们正在读取 test.txt 的内容。

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

输出

您可以在 PowerShell 控制台中看到以下输出。

Welcome to TutorialsPoint

❮ powershell_files_io.html