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);
参照
処理手順
概念
共通の JScript 関数による C++ ウィザードのカスタマイズ