2

I can't find any python command related to set working directory in python reference guide in ABAQUS.

Is there any way to set working directory using python script in ABAQUS?

서보일
  • 25
  • 3

1 Answers1

1

It is similar to how you usually do in Python.
Because, Abaqus Scripting API support os module, simply you can use:

import os
setPath = r'C:\'
os.chdir(setPath)
Satish Thorat
  • 584
  • 1
  • 5
  • 13