So, if I understand correctly, you only want quickbms to show you the names of the files that have been reimported, correct?
That's already done by default where you will see a < character at the left of the filename, so if you don't see any filename it means nothing was reimported.
Instead if you want to create a file during the reimporting process... I guess that's not possible because all the log/clog/slog operations are reversed so you can only control the output to the console by using the Print command, maybe you can use it in this way:
Code: Select all
print "XXX file %NAME% of offset %OFFSET|x% size %SIZE|x% processed"
Then launch quickbms from command-line redirecting the output to file with grep:
Code: Select all
quickbms -r -r -w script.bms FILE FOLDER | grep XXX > output.txt
Something like that may work for your needs