On 10/21/2009 08:48 PM, Uwe Stöhr wrote:
The attached patch for branch (and also trunk) fixes
http://www.lyx.org/trac/ticket/6234.
Alex and Richard, can you please test and report if it works also for
you.
This looks like it should work, but I haven't tested it. I don't have
anything at the moment that would use the new functionality.
That said, are we sure we always want to create all the directories that
might happen to be there? Might we check first to see if there are any
files that need copying, and only then create the directory? Something like:
created = false
loop over files:
if file matches ext:
if not created:
create directory
created = true
copy file
But this isn't critical.
rh