C ドライブにフォルダーを作成し、wix インストーラー プログラムでそのフォルダー内にいくつかのサブフォルダーを作成したいと考えています。ただし、これらのフォルダはインストールされたフォルダとは関係ありません。. プログラムを AServiceSetup フォルダー内にインストールしたいのですが、C ドライブ内に「PTLogFile」フォルダーを作成し、そのフォルダー内にいくつかのサブフォルダーを作成したいと考えています。私のコードを修正するのを手伝ってください.Followingは私のコードです
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="PTLogFile" Name="PTLogFile">
<Directory Id="Backups" Name="Backups"/>
<Directory Id="CommandLog" Name="CommandLog"/>
<Directory Id="EventLog" Name="EventLog"/>
<Directory Id="Responds" Name="Responds"/>
</Directory>
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="AServiceSetup">
</Directory>
</Directory>
</Directory>
</Fragment>