Hi,

you could prob use some python scripts. Thy work nicely cross-platform too.

Here's a teaser, google for some of the modules/functions.

cheers
jp

#!/usr/bin/env python

import glob, os, sys

file_pattern = '*.3ds'
search_pattern = '.oldname.'
replace_pattern = '.newname.'

if __name__ == "__main__":
     # get all files
     names = glob.glob(file_pattern)
     for n in names:
         newn = n.replace(search_pattern, replace_pattern)
         if newn != n:
             cmd = "mv " + n + " " + newn
             print cmd
             ret = os.popen(cmd).read()
             print ret

Paul Pocock wrote:
> I have a number of objects I would like to convert to .ive and was
> wondering if there is a way to do batch processing with osgconv?
> 
> 
> IMPORTANT: This email remains the property of the Australian Defence 
> Organisation and is subject to the jurisdiction of section 70 of the CRIMES 
> ACT 1914.  If you have received this email in error, you are requested to 
> contact the sender and delete the email.
> 
> 
> _______________________________________________
> osg-users mailing list
> [email protected]
> http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org
> 

-- 
This message is subject to the CSIR's copyright terms and conditions, e-mail 
legal notice, and implemented Open Document Format (ODF) standard. 
The full disclaimer details can be found at 
http://www.csir.co.za/disclaimer.html.

This message has been scanned for viruses and dangerous content by MailScanner, 
and is believed to be clean.  MailScanner thanks Transtec Computers for their 
support.

_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to