DeleteFile
업데이트: 2007년 11월
지정한 파일을 삭제합니다.
function DeleteFile(
oFSO,
strFile
)
매개 변수
oFSO
파일 시스템 개체입니다.strFile
삭제할 파일의 이름입니다.
설명
지정한 파일을 삭제하려면 이 함수를 호출합니다.
예제
// Declare a temporary file.
var strFile = strTempFolder + "\\" + strTarget;
var strClassName = strTarget.split(".");
wizard.AddSymbol("SAFE_CLASS_NAME", strClassName[0]);
wizard.AddSymbol("SAFE_ITEM_NAME", strClassName[0]);
// Declare the template name.
var strTemplate = strTemplatePath + "\\" + strTpl;
// Render and insert the template.
wizard.RenderTemplate(strTemplate, strFile, bCopyOnly);
// Create a new project file and add the file from the template.
var projfile = projItems.AddFromTemplate(strFile, strTarget);
// Delete the temporary file from the file structure object.
DeleteFile(fso, strFile);
참고 항목
작업
개념
공용 JScript 함수를 사용하여 C++ 마법사 사용자 지정