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.htm
广告