DeleteFile
Odstraní zadaný soubor.
function DeleteFile(
oFSO,
strFile
)
Parametry
oFSO
Objekt systému souboru.strFile
Název souboru, který má být smazán.
Poznámky
Použijte tuto funkci k odstranění zvoleného souboru.
Příklad
// 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);
Viz také
Úkoly
Koncepty
Přizpůsobení průvodců C++ pomocí běžných funkcí JScript