使用 PowerShell 将数据附加到文件

Marion Paul Kenneth Mendoza 2023年1月30日
  1. PowerShell 中的 Add-Content 基本语法
  2. 在 PowerShell 中使用 Add-Content 将文本附加到文件
  3. 在 PowerShell 中使用 (`n) 运算符的新行上追加数据
  4. 使用 Add-Content 命令将一个文件的内容添加到 PowerShell 中的另一个文件
  5. 使用 Add-Content 命令将数据附加到 PowerShell 中的只读文件
使用 PowerShell 将数据附加到文件

PowerShell 中的 Add-Content 命令将内容添加到文件中。我们可以在命令或 Get-Content 中指定内容来获取文件的内容以进行附加。

Add-Content cmdlet 将文本附加到文件或将字符串附加到文件。

PowerShell 中的 Add-Content 基本语法

Windows PowerShell 中的 Add-Content cmdlet 将内容附加到文件并将文本附加到文件。

Add-Content
   [-Path] <string[]>
   [-Value] <Object[]>
   [-PassThru]
   [-Filter <string>]
   [-Include <string[]>]
   [-Exclude <string[]>]
   [-Force]
   [-Credential <pscredential>]
   [-WhatIf]
   [-Confirm]
   [-NoNewline]
   [-Encoding <Encoding>]
   [-AsByteStream]
   [-Stream <string>]
   [<CommonParameters>]

在 PowerShell 中使用 Add-Content 将文本附加到文件

例如,目录中有 Get-DateFile.txt 文本文件。

使用 Get-DateFile.txt 创建一个新文件,并添加一些测试数据。

获取数据文件.txt:

Example illustration about appending text to
Add-Content -Path .\Get-DateFile.txt "End of file"

Add-Content cmdlet 将 End of file 字符串附加到当前目录中 -Path 参数指定的文件末尾。

输出:

Example illustration about appending text to End of file

在 PowerShell 中使用 (`n) 运算符的新行上追加数据

要将数据附加到文件的新行,请使用换行符 (`n)。

Add-Content -Path .\Get-DateFile.txt "`nSecond line starts here..."

输出:

Example illustration about appending text to End of file

Second line starts here…

使用 Add-Content 命令将一个文件的内容添加到 PowerShell 中的另一个文件

Add-Content 命令会将一个文件的内容附加到另一个文件。

它将读取文件内容并将其分配给变量,并将内容写入目标文件。

如果在将文本添加到文件时文件不存在,Add-Content 命令将创建一个新文件。

# Read file contents to variable
$sourceFileContent = Get-Content -Path .\GetFileProperties.txt 

# This line will append the content of one file to another file
# If the file does not exist, the Add-Content command will create a new file
Add-Content -Path .\Destination_File.txt -Value $sourceFileContent 

要将一个文件的内容附加到另一个文件,PowerShell 中的 Get-Content cmdlet 会获取 Path 参数指定的文件内容。

然后,它读取文件的内容并将它们存储在变量 $sourceFileContent 中。

PowerShell 中的 Add-Content cmdlet 附加在 -Value 参数中指定的源文件内容。

如果文件不存在,Add-Content 命令将创建一个新文件并复制内容。

使用 Add-Content 命令将数据附加到 PowerShell 中的只读文件

# Create a new file
New-Item -Path .\TempROFile.txt -ItemType File

# Set file as read-only
Set-ItemProperty -Path .\TempROFile.txt -Name IsReadOnly -Value $True 

# Get file details
Get-ChildItem -Path .\TempROFile.txt  

# Appends the line to file
Add-Content -Path .\TempROFile.txt -Value 'End of File' -Force

第一个命令使用 PowerShell 的 New-Item cmdlet 创建一个新文件。

PowerShell 中的 Set-ItemProperty 命令用于将指定文件的 IsReadOnly 属性设置为 true。

PowerShell 中的 Get-ChildItem 命令获取指定的文件详细信息,例如 NameLastWriteTimeLengthmode

Add-Content cmdlet 将一行附加到 -Path 参数指定的只读文件。

Marion Paul Kenneth Mendoza avatar Marion Paul Kenneth Mendoza avatar

Marion specializes in anything Microsoft-related and always tries to work and apply code in an IT infrastructure.

LinkedIn

相关文章 - PowerShell File