DeleteFile
刪除指定的檔案。
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);