Anton,
Thank you for the quick response. I have been using the BuildImage sample to try and get what I need working.
I'm hard coding functions to try and see the behavior I need.
Code:
l__EXCEPTION_NUMBER :=
StarBurn_ISO9660JolietFileTree_Add(
l__PVOID__ISO9660JolietFileTree,
PCHAR( @l__CHAR__ExceptionText[1] ),
sizeof( l__CHAR__ExceptionText ),
l__ULONG__Status,
'C:\temp\file.txt',
nil,
FILE_TIME_LAST_WRITE,
l__PVOID__Root,
l__PVOID__NewNode
);
The above creates file.txt in the image in the root. What I want to do is have it create it in the same directory that it is on disk. So it would be created as \temp\file.txt in the image (not \file.txt).
I also tried to add just the directory, 'C:\temp'. But when I do that it automatically scans the directory and adds all the files, which I do not want.
Thanks!