View Revisions: Issue #29597 |
[ All Revisions ] [ Back to Issue ] |
Summary |
0029597: Data Exchange - unable to read VRML2 file |
|
Revision |
2018-03-20 14:19 by kgv |
|
Description |
The file in attachment cannot be read (converted from VRML1 file using vrml1tovrml2.exe tool).
@echo off
rem Convert all VRML files within specified folder and puts it into "CONVERTED_VRML2" folder
rem Syntax: vrml1tovrml2.exe InputFolder=. OutputFolder=CONVERTED_VRML2
set "aResDir=%~dp0CONVERTED_VRML2"
if not "%2"=="" set "aResDir=%2"
if exist "%aResDir%" rmdir /S /Q "%aResDir%"
mkdir "%aResDir%"
if not "%1"=="" pushd "%1"
for /R %%f in (.\*.wrl) do (
@echo %%~nxf
"%~dp0vrml1tovrml2.exe" "%%f" > "%aResDir%\%%~nxf"
)
if not "%1"=="" popd "%1"
|
|
Revision |
2018-03-20 13:52 by kgv |
|
Description |
The file in attachment cannot be read (converted from VRML1 file using vrml1tovrml2.exe tool). |
|
Revision |
2018-03-20 12:55 by kgv |
|
Description |
The file in attachment cannot be read. |