1

ディレクトリ内の各ファイルをHTMLに変換することを目的とした、かなり単純なコードがいくつかあります。私の問題は、ファイルごとにジョブが正常に作成されても、スクリプトブロックが実行されないことです。

$convert = {

Param(
    [parameter(ValueFromPipeline=$true)]
    $file
)

$content = Get-Content -Path $file.FullName
$outDir= New-Item -Type dir -Path $file.FullName + "\HTMLFiles"
$outFile = $outDir + $file.Name +  ".html"

foreach($line in $content) {
     #move the content into a variable and add some html tags
     $html = $html + '<tr>' + $line + '</tr>' +'<br>'
}
#convert the variable to .html and save the result as a file
ConvertTo-Html -Head $style -Body $html | Out-File -FilePath $outFile -Encoding "ASCII"
#empty the variable
$html = " "
}

Function main
{
Param(
   [parameter(Position=0, Mandatory=$true, ValueFromPipeLine=$true)]
   $target = $args[0]
)
#stores some html styling code
$path = $pwd.Path + "\style.txt"
$style = Get-Content -Path $path
#collect all files in the dirctory
$files = Get-ChildItem -Path $target -Recurse

foreach($file in $files) {
#for each file in the collection start a job which runs the given scriptblock (scriptblock is not working)
Start-Job -Name $file.name -ScriptBlock $convert -ArgumentList $file
}
#clean-up
Write-Host "Finished jobs"
Wait-Job *
Remove-Job -State Completed
}

main($args[0])

私はpowershellにかなり慣れていないので、これを解決する方法を試してみましたが、理解できないようです.

4

1 に答える 1

-1
  • 変更:スクリプト ブロックと関数からパラメーターを削除しました。
  • 理由:引数は Start-Job によって渡され、構文を介して関数にも渡されるためfunction name (argument1, argument2) {}です。

また、Powershell では次のような関数を呼び出すため、関数呼び出しから括弧を取り除きました。 function "argument1" "argument2"


$convert = {    
    $content = Get-Content -Path $file.FullName
    $outDir= New-Item -Type dir -Path $file.FullName + "\HTMLFiles"
    $outFile = $outDir + $file.Name +  ".html"

    foreach($line in $content) {
        #move the content into a variable and add some html tags
        $html = $html + '<tr>' + $line + '</tr>' +'<br>'
    }
    #convert the variable to .html and save the result as a file
    ConvertTo-Html -Head $style -Body $html | Out-File -FilePath $outFile -Encoding "ASCII"
    #empty the variable
    $html = " "
}

Function main ($args)
{
    $target = $args
    #stores some html styling code
    $path = $pwd.Path + "\style.txt"
    $style = Get-Content -Path $path
    #collect all files in the dirctory
    $files = Get-ChildItem -Path $target -Recurse

    foreach($file in $files) {
        #for each file in the collection start a job which runs the given scriptblock (scriptblock is not working)
        Start-Job -Name $file.name -ScriptBlock $convert -ArgumentList $file
    }
    #clean-up
    Write-Output "Finished jobs"
    Wait-Job *
    Remove-Job -State Completed
}

main $args[0]
于 2014-03-24T09:24:36.227 に答える