ok, I have figured it out, the "test" must be put into the RootDirectoryNewName parameter, and the AbsolutePathAndName parameter must be NULL.
I would like to suggest that it would be nice to be able to create multiple folders with one call by passing in "test/test1" or "test\test1". Right now it just creates a folder with that name but that folder is not accessible because of the \ / characters. It would be better to create "test" and "test1" folders instead, "test1" residing inside "test".
Is this possible? It would make my life much easier.
Thanks
pr0digy1 wrote:
how can i create an empty folder in the joliet image?
right now i'm trying to do the following:
l__EXCEPTION_NUMBER =
StarBurn_ISO9660JolietFileTree_Add(
m_ISO9660JolietFileTree,
( PCHAR )( &l__CHAR__ExceptionText ),
sizeof( l__CHAR__ExceptionText ),
&l__ULONG__Status,
"test",
NULL,
FILE_TIME_LAST_WRITE,
&l__PVOID__Temp,
&l__PVOID__Root
);
but i get an error "CStarBurn_FileTree::CreateFromRoot(): FindFirstFile( '\test\*.*' ) failed, status 3"
it seems like whatever is being created in joliet image must exist on the hard drive?
i want to create a folder in joliet image and then use the tree node as parent when adding files to it.
thanks