我有一个写有Xcopy命令的文件。现在我需要将它们移动到xml文件格式,以便我可以在Msbuild中执行它们。
以下是我的文件内容
xcopy File1 Destinationfolder1
Xcopy File2 DestinationFolder2
Xcopy File3 DestinationFolder1
我想把它作为xml文件,如下所示
<Xcopy include="File1">
<Destination> DestinationFolder1 </Destination>
</Xcopy>
<Xcopy Include="File2">
<Destination> DestinationFolder2 </Destination>
</Xcopy>
and so on..
是否有任何PowerShell脚本或其他简单的方法来实现这一目标?
答案 0 :(得分:2)
以下cmd批处理文件准确提供了您要查找的输出:
@echo off
rem Syntax: conv inputfile resultfile
set input=%1
set result=%2
copy nul %result%
for /F "tokens=2,3*" %%G in (%input%) do (
echo ^<Xcopy include="%%G"^> >> %result%
echo ^<Destination^> %%H ^</Destination^> >> %result%
echo ^</Xcopy^> >> %result%
echo. >> %result%
)
答案 1 :(得分:1)
这个怎么样:
clear
$res = Get-Content c:\PST\1.txt
$xml = [xml] "<root namespace=`"namespace`"></root>"
foreach($line in $res)
{
# If words are separated by more than one whitespace
$line=$line -replace '\s+', ' '
$values = $line.Split(" ")
$insert = [xml] [string]::Format("<Xcopy include=`"{0}`"> <Destination>{1}</Destination> </Xcopy>", $values[1], $values[2])
$importNode = $xml.ImportNode($insert.DocumentElement, $true)
$xml.root.AppendChild($importNode) |Out-Null
}
$xml.Save("c:\PST\result.xml")
它正在运行,但我非常确定PowerShell专家可以使它更简单