Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

Current working dir in other batch prog.

conteyor

New member
I want to use the current working directory of ProEin a batch program. The goal is eg. to copy a part into the workingdir without any interaction of the user. Does anyone knows where it is stored.


Anyone an Idea?


thanks


Frederik


PS. .net solution is also ok
 
Add the working directory in your startup


@echo off
Set Workdir=<your path>
CD Workdir
"C:\PTC\proeWildfire 3.0\bin\proe.exe" "C:\PTC\proeWildfire 3.0\bin\proe1.psf" %*
 

Sponsor

Back
Top