コードセクションにフォルダを作成するにはどうすればよいですか? inno download のサンプルスクリプトを使用します。
[Code]
//HERE I NEED TO CREATE FOLDER "Downloaded"
procedure InitializeWizard();
begin
itd_init;
itd_addfile('http://link.net/soft/file.exe',expandconstant('{sd}\Downloaded\file.exe'));
itd_downloadafter(wpReady);
end;