AI files

technokol

New Member
Hi!

Could you please help me in the following?
I try to manage the AI files from scripts, on windows.
Could you please tell me, how to find out, which is the full extent?
This is an x.bat:

set DATABASE=%1
%DLC%\bin\rfutil %DATABASE% -C aimage new ( it works fine )
set EXTENTTOSAVE=%DLC%\bin\rfutil log1 -C aimage full ( it works not )
echo %EXTENTTOSAVE% ( writes the command again ... )

copy %EXTENTTOSAVE% %AISAVEDIR%
%DLC%/bin/rfutil %DATABASE% -C aimage empty %EXTENTTOSAVE%

Thanks,

Tom.
 

TomBascom

Curmudgeon
You can find the next full extent by running this:

Code:
_rfutil dbname -C aimage extent full

There may be more than one full extent. So you should run this in a loop until there are no more to be processed.
 
Top