![]() |
Re: DelphiNeroApi - Dateien übergeben
Zitat:
Delphi-Quellcode:
man haengt quasi diese Nero_iso_items aneinander, und eins davon kann man als directory definieren und an diesem haengt man dann weitere nero_iso_items dran. damit baut man quasi eine baumstruktur auf. habe ich das so richtig verstanden?
// Create some ISO items to be used as files.
// Note that the ISO item structure is zeroized and initialized by the Nero API. NERO_ISO_ITEM * pFile1 = NeroCreateIsoItem(); NERO_ISO_ITEM * pFile2 = NeroCreateIsoItem(); NERO_ISO_ITEM * pFile3 = NeroCreateIsoItem(); // Create an ISO item to be used as directory. // Note that the ISO item structure is zeroized and initialized by the Nero API. NERO_ISO_ITEM * pDir1 = NeroCreateIsoItem(); // Setup the 1st file item. assert(pFile1); pFile1->longSourceFilePath = "C:\\File2Burn1.txt"; pFile1->longFileName = "File1.txt"; pFile1->nextItem = pFile2; // Setup the 2nd file item. assert(pFile2); pFile2->longSourceFilePath = "C:\\File2Burn2.txt"; pFile2->longFileName = "File2.txt"; pFile2->nextItem = pDir1; // Setup the 3rd file item. assert(pDir1); pDir1->isDirectory = TRUE; pDir1->longFileName = "MySubdir"; pDir1->subDirFirstItem = pFile3; // Setup the 3rd file item. assert(pFile3); pFile3->longSourceFilePath = "C:\\File2Burn3.txt"; pFile3->longFileName = "File3inSubdir.txt"; pFile3->nextItem = NULL; |
Re: DelphiNeroApi - Dateien übergeben
und ich habe probleme, die mitgelieferten delphi komponenten zu benutzen... lieber alles manuell...
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 03:55 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz