[荐]获取文件信息的函数
时 间:2008-07-07 09:58:46
作 者:fan0217 ID:8 城市:上海 QQ:2851379730
摘 要:在ACCESS爱好者论坛(http://www.accfans.net)看到fan0217版主提供的一个函数,推荐给大家!
正 文:
一、原文地址
在:http://www.accfans.net/dispbbs.asp?boardID=21&ID=15882&page=1
二、模块代码:
Type FileInfo
Name As String '名字
ShortName As String
Type As String '类型
Size As Long
DateCreate As Date
DateLastModified As Date '
DateLastAccessed As Date
Attributes As String
End Type
'===============================================================================
'-函数名称: GetFileInfo
'-功能描述: 获取文件信息
'-输入参数说明: 参数1: 必选 strFile As String 文件路径和名称
'-返回参数说明: 返回文件名称,类型,大小,更新日期等
'-使用语法示例: Msgbox GetFileInfo("C:\Abc.txt").Size
'-参考:
'-使用注意: 需要引用Microsoft Scripting Runtime
'-兼容性: 2000,XP,2003
'-作者: fan0217@163.com
'-更新日期: 2006-05-20
'===============================================================================
Function GetFileInfo(strFile As String) As FileInfo
On Error Resume Next
Dim fsoSys As New Scripting.FileSystemObject
Dim fsoFile As File
Dim strstrastr As String
Set fsoFile = fsoSys.GetFile(strFile)
With GetFileInfo
.Name = fsoFile.Name
.ShortName = fsoFile.ShortName
.Type = fsoFile.Type
.Size = fsoFile.Size / 1000
.DateCreate = fsoFile.DateCreated
.DateLastModified = fsoFile.DateLastModified
.DateLastAccessed = fsoFile.DateLastAccessed
If fsoFile.Attributes And Archive Then
strAstr = strAstr & "常规 "
End If
If fsoFile.Attributes And ReadOnly Then
strAstr = strAstr & "只读 "
End If
If fsoFile.Attributes And Hidden Then
strAstr = strAstr & "隐藏 "
End If
If fsoFile.Attributes And System Then
strAstr = strAstr & "系统 "
End If
If fsoFile.Attributes And Compressed Then
strAstr = strAstr & "压缩 "
End If
.Attributes = strAstr
End With
Set fsoSys = Nothing
Set fsoFile = Nothing
End Function
Access软件网QQ交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- 【Access高效办公】统计当...(06.30)
- 【Access高效办公】用复选...(06.24)
- 根据变化的日期来自动编号的示例...(06.20)
- 【Access高效办公】按日期...(06.12)
- 合并列数据到一个文本框的示例;...(05.06)
- 通过命令按钮让Access列表...(04.24)
- 【Access高效办公】统计当...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)

学习心得
最新文章
- Access设置试用期截止日期默认...(08.15)
- Access快速开发平台--Err...(08.12)
- Deepseek资料整理神器(08.11)
- 【Access财务分析示例】按月统...(08.08)
- Access查询里使用Date()...(08.05)
- 关于Access交叉表查询生成的统...(08.02)
- ACCESS做的工作日常小工具_纸...(07.30)
- Access快速开发平台进销存教程...(07.28)
- 关于Access快速开发平台2.6...(07.23)
- 【Access交叉表查询】按百分比...(07.21)