|
|
| Menu location |
|---|
| File → Save Copy |
| Workbenches |
| All |
| Default shortcut |
| None |
| Introduced in version |
| - |
| See also |
| Std SaveAs, Std Save |
Description
The Std SaveCopy command saves a copy of the active document under a new file name.
Usage
- Select the File →
Save Copy option from the menu.
- Enter a filename in the dialog box.
- Press the Save button.
Options
- Press Esc or the Cancel button to abort the command.
Scripting
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
To save a copy of a document use the saveCopy method of the document object.
import FreeCAD
from pathlib import Path
# The folder and filename we will use:
fld = "D:/testfiles/"
fnm = fld + "testCopy.FCStd"
# Make sure fld exists:
Path(fld).mkdir(parents=True, exist_ok=True)
doc = FreeCAD.newDocument()
doc.saveCopy(fnm)
This page is retrieved from https://wiki.freecad.org/Std_SaveCopy