Compartir a través de


DeleteFile

Actualización: noviembre 2007

Elimina el archivo especificado.

function DeleteFile( 
      oFSO, 
      strFile  
) 

Parámetros

  • oFSO
    Objeto del sistema de archivos (FSO).

  • strFile
    Nombre del archivo que se va a eliminar.

Comentarios

Se llama a esta función para eliminar el archivo especificado.

Ejemplo

// 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);

Vea también

Tareas

Crear un asistente personalizado

Conceptos

Personalizar los asistentes de C++ con funciones comunes de JScript

Diseñar un asistente

Otros recursos

Funciones de JScript para los asistentes de C++