Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save DouglasAntunes/8f925d055ee9c1ab280e6d3727d6653e to your computer and use it in GitHub Desktop.
Save DouglasAntunes/8f925d055ee9c1ab280e6d3727d6653e to your computer and use it in GitHub Desktop.
@ECHO OFF
REM Folder Structure:
REM -IN: pcModel
REM -OUT: ps2Model
REM Folder Root:
REM -This Batch & convdff.exe
FOR /R .\pcModel\ %%G IN (*.dff) DO (
convdff.exe -i -o ps2 .\pcModel\%%~nxG .\ps2Model\%%~nxG
)
PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment