|
|
| Menu location |
|---|
| File → Save a Copy... |
| Workbenches |
| All |
| Default shortcut |
| None |
| Introduced in version |
| - |
| See also |
| Std SaveAs, Std Save |
Descriere
Salvați o copie a documentului sub un nou nume de fișier.
The Std SaveCopy command saves a copy of the active document under a new file name.
Use
Alegeți File → Save a Copy... din meniul principal.
- 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)
Această pagină este preluată de la https://wiki.freecad.org/Std_SaveCopy