gpt4 book ai didi

powershell - 无法从空的.txt文件执行export-csv

转载 作者:行者123 更新时间:2023-12-03 00:45:13 27 4
gpt4 key购买 nike

我正在尝试从一个空的文本文件创建一个csv文件。该csv文件应该仅使用 header 创建,因为文本文件中不存在任何数据,但是我的代码正在创建一个完整的空白csv文件而不包含 header 。以下代码缺少什么?

 import-csv -Path "C:\Powershell-Work\EmtyTest.txt" -Header Date,Time,'R Site',Status,Comments |
Select-Object 'Process Date',Date,Time,'R Site',Status,Comments|
Export-csv -path "C:\Powershell-Work\EmtyTest.csv" -NoTypeInformation

最佳答案

因为EmtyTest.txt是一个空白文件,所以Import-CSV产生一个空数组。

由于源数据为空,因此您的输出文件也将为空白。

CSV文件只是文本,因此您可以从字符串创建它:

'"Process Date","Date","Time","R Site","Status","Comments"' | Out-File -FilePath "C:\Powershell-Work\EmtyTest.csv"

关于powershell - 无法从空的.txt文件执行export-csv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49665439/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com