Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はPowerShellを初めて使用します。この構造はPowerShellで何を意味しますか:$ {c:a.txt}
ありがとう。
Powershellスクリプティングから:
変数の構文によると、ファイルへのパスがドル記号で始まる中括弧で囲まれている場合($ {C:\ foo.txt}のように)、ファイルの内容を参照します。L値として使用される場合、それに割り当てられたものはすべてファイルに書き込まれます。R値として使用すると、ファイルから読み取られます。オブジェクトが割り当てられている場合は、保存する前にシリアル化されます。