Std SaveCopy/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "<!--Empty=1 to suppress icon--> {{GuiCommand/ko |Name=Std SaveCopy |Name/ko=표준 사본 저장 |MenuLocation=파일 → 사본 저장... |Workbenches=모두 |SeeAlso=Std_S...")
(Updating to match new version of source page)
 
(20 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav
{{Docnav
|[[Std_SaveAs|Std SaveAs]]
|[[Std_SaveAs/ko|다른 이름으로 저장]]
|[[Std_SaveAll|Std SaveAll]]
|[[Std_SaveAll/ko|모두 저장]]
|[[Std_File_Menu|Std File Menu]]
|[[Std_File_Menu/ko|표준 파일 메뉴]]
|IconL=Std_SaveAs.svg
|IconL=Std_SaveAs.svg
|IconR=Std_SaveAll.svg
|IconR=Std_SaveAll.svg
Line 9: Line 10:
}}
}}


<!--Empty=1 to suppress icon-->
{{GuiCommand/ko
{{GuiCommand/ko
|Name=Std SaveCopy
|Name=Std SaveCopy
Line 18: Line 18:
}}
}}


==Description==
<span id="Description"></span>
==설명==

The '''Std SaveCopy''' command saves a copy of the active document under a new file name.

==Usage==


'''표준 사본 저장(Std SaveAs)''' 명령은 활성 문서의 사본을 새 파일 이름으로 저장합니다.
# Select the {{MenuCommand|File → [[Image:Std_SaveCopy.svg|16px]] Save a Copy...}} option from the menu.
# Enter a filename in the dialog box.
# Press the {{Button|Save}} button.


<span id="Usage"></span>
==Options==
==용법==


# 메뉴에서 {{MenuCommand|파일 → [[Image:Std_SaveCopy.svg|16px]] 사본 저장...}} 옵션을 선택합니다.
* Press {{KEY|Esc}} or the {{Button|Cancel}} button to abort the command.
# 대화 상자에서 파일 이름을 입력합니다.
# {{Button|저장}} 버튼을 클릭합니다.


<span id="Options"></span>
==Preferences==
==선택 사항==


* 명령을 중지하려면 {{KEY|Esc}} 키나 {{Button|취소}} 버튼을 누릅니다.
* The last used file location is stored: {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath}}.


==Scripting==
<span id="Scripting"></span>
==스크립트==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|참조:}} [[FreeCAD_Scripting_Basics/ko|FreeCAD 스크립트 기초]].


To save a copy of a document use the {{incode|saveCopy}} method of the document object.
문서의 사본을 저장하려면 문서 객체의 {{incode|saveCopy}} 메소드를 사용하십시오.


{{Code|code=
{{Code|code=
Line 59: Line 59:


{{Docnav
{{Docnav
|[[Std_SaveAs|Std SaveAs]]
|[[Std_SaveAs/ko|다른 이름으로 저장]]
|[[Std_SaveAll|Std SaveAll]]
|[[Std_SaveAll/ko|모두 저장]]
|[[Std_File_Menu|Std File Menu]]
|[[Std_File_Menu/ko|표준 파일 메뉴]]
|IconL=Std_SaveAs.svg
|IconL=Std_SaveAs.svg
|IconR=Std_SaveAll.svg
|IconR=Std_SaveAll.svg
Line 67: Line 67:
}}
}}


{{Std Base navi{{#translation:}}}}
{{Std_Base_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Latest revision as of 11:53, 21 April 2024

표준 사본 저장

메뉴 위치
파일 → 사본 저장...
작업대
모두
기본 단축키
없음
도입 버전
-
참조
표준 다른 이름으로 저장, 표준 저장

설명

표준 사본 저장(Std SaveAs) 명령은 활성 문서의 사본을 새 파일 이름으로 저장합니다.

용법

  1. 메뉴에서 파일 → 사본 저장... 옵션을 선택합니다.
  2. 대화 상자에서 파일 이름을 입력합니다.
  3. 저장 버튼을 클릭합니다.

선택 사항

  • 명령을 중지하려면 Esc 키나 취소 버튼을 누릅니다.

스크립트

참조: FreeCAD 스크립트 기초.

문서의 사본을 저장하려면 문서 객체의 saveCopy 메소드를 사용하십시오.

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)