RE:Obtener Atributos de un fichero
1.- Tienes q hacer una referencia en el proyecto a "MicroSoft Scripting Runtime"(Menu.:Proyecto,Opcion Referencias)
Dim ObjFileSystem As FileSystemObject
Dim Fichero As File
Set ObjFileSystem = New FileSystemObject
Set Fichero = ObjFileSystem.GetFile("c:\kk.txt")
Debug.Print Fichero.DateCreated
Debug.Print Fichero.DateLastAccessed
Debug.Print Fichero.DateLastModified
Debug.Print Fichero.Drive
Debug.Print Fichero.Name
Debug.Print Fichero.ParentFolder
Debug.Print Fichero.Path
Debug.Print Fichero.ShortName
Debug.Print Fichero.ShortPath
Debug.Print Fichero.Size
Debug.Print Fichero.Type