Devuelve un objeto File que corresponde al archivo de la ruta especificada.
objeto.GetFile(especificaciondearchivo)
Se produce un error si el archivo especificado no existe.
El siguiente ejemplo muestra el uso del método GetFile.
[JScript] function MostrarInformacionDeAccesoDeArchivo(especificaciondearchivo) { var fso, f, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f =fso.GetFile(
especificaciondearchivo)
; s = f.Path.toUpperCase() + "<br>"; s += "Creado: " + f.DateCreated + "<br>"; s += "Con acceso: " + f.DateLastAccessed + "<br>"; s += "Modificado: " + f.DateLastModified return(s); } [VBScript] Function MostrarInformacionDeAccesoDeArchivo(especificaciondearchivo) Dim fso, f, s Set fso = CreateObject("Scripting.FileSystemObject") Set f =fso.GetFile(
especificaciondearchivo)
s = f.Path & "<br>" s = s & "Creado: " & f.DateCreated & "<br>" s = s & "Último acceso: " & f.DateLastAccessed & "<br>" s = s & "Última modificación: " & f.DateLastModified MostrarInformacionDeAccesoDeArchivo = s End Function
Método GetAbsolutePathName | Método GetBaseName | Método GetDrive | Método GetDriveName | Método GetExtensionName | Método GetFileName | Método GetFileVersion | Método GetFolder | Método GetParentFolderName | Método GetSpecialFolder | Método GetTempName
Se aplica a: Objeto FileSystemObject
Ayuda de Javascript y Vbscript para Javascripts.astalaweb.com. |