|
Menu location |
---|
File → Save a Copy... |
Workbenches |
All |
Default shortcut |
None |
Introduced in version |
- |
See also |
Std SaveAs, Std Save |
The Std SaveCopy command saves a copy of the active document under a new file name.
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)