    

 ## On this page

  

 

 # import\_cad

 Last update: 10.09.2025 

<a id="ansys.meshing.prime.FileIO.import_cad"></a>

#### FileIO.import\_cad(file\_name, params)

Import a CAD file from disk.

Supported CAD file formats on Windows are:

\*.scdoc \*.scdocx \*.dsco \*.fmd \*.agdb \*.pmdb \*.meshdat \*.mechdat \*.dsdb \*.cmdb \*.sat \*.sab \*.dwg \*.dxf \*.model \*.exp \*.CATPart \*.CATProduct \*.cgr \*.3dxml \*.prt\* \*.asm\* \*.iges \*.igs \*.ipt \*.iam \*.jt \*.prt \*.x\_t \*.x\_b \*.par \*.psm \*.asm \*.sldprt \*.sldasm \*.step \*.stp \*.stl \*.plmxml \*.tgf

Supported CAD file formats on Linux are:

\*.fmd \*.agdb \*.pmdb \*.meshdat \*.mechdat \*.dsdb \*.cmdb \*.sat \*.sab \*.CATPart \*.CATProduct \*.iges \*.igs \*.jt \*.x\_t \*.x\_b \*.step \*.stp \*.stl \*.plmxml \*.tgf

Refer **Reading and writing files** section in **User guide** for a comprehensive list of supported formats.

- **Parameters:**
    
    **file\_name**: Path to the CAD file on disk.
    
    **params**: Parameters for importing the CAD file.
- **Returns:**
    
    [`ImportCadResults`](ansys.meshing.prime.ImportCadResults.md#ansys.meshing.prime.ImportCadResults): Results from importing the CAD file.
- **Return type:**
    
    [`ImportCadResults`](ansys.meshing.prime.ImportCadResults.md#ansys.meshing.prime.ImportCadResults)

### Examples

```pycon
&gt;&gt;&gt; import ansys.meshing.prime as prime
&gt;&gt;&gt; prime_client = prime.launch_prime()
&gt;&gt;&gt; model = prime_client.model
&gt;&gt;&gt; file_io = prime.FileIO(model=model)
&gt;&gt;&gt; params = prime.ImportCadParams(model=model)
&gt;&gt;&gt; results = file_io.import_cad("/tmp/my_cad.x_t", params=params)

```