会员登录 - 用户注册 - 网站地图 Office中国(office-cn.net),专业Office论坛
当前位置:主页 > 技巧 > Access技巧 > 模块函数VBA > 正文

获取唯一的文件名

时间:2004-11-23 22:46 来源:DevAshish(朱亦文译) 作者:zhuyiwen… 阅读:
作    者:Dev Ashish  
摘    要:我每天都要从数据库中导出50个文件,这些文件要一个固定的文件名,例如:tmp00010.Dat, tmp00011.Dat ... 等等。我知道如何在代码通过循环产生这些要导出的文件。但我不知道在一个目录中为每个文件生成唯一的文件名。
  本文将给出一个配合DIR的做法。

正    文:

(问): 我每天都要从数据库中导出50个文件,这些文件要一个固定的文件名,例如:tmp00010.Dat, tmp00011.Dat ... 等等。我知道如何在代码通过循环产生这些要导出的文件。但我不知道在一个目录中为每个文件生成连续、唯一的文件名。

(答): 将下列代码粘贴到一个新的模块中,使用函数fUniqueFile来产生连续、唯一的文件名。该函数在给出唯一的文件名前将会检查目录中的每个文件的实例。

'***************** Code Start ***************
'作者: Dev Ashish. 

Function fUniqueFile(strDir As String, intMaxFiles As Integer, _
                    strPadChar As String, strFileInitName As _
                    String, Optional strFileExt) As String
    '================================================================
    ' 函数返回一个连续、唯一的文件名
    ' 函数参数说明:
    '   strDir: 文件所在的目录位置
    '   intMaxFiles: 返回的最大文件数
    '   strPadChar: 文件格式串
    '   strFileInitName: 文件前缀,通常为3个字符
    '   (Optional) strFileExt: 扩展文件名(可选参数) = File extension to use
    ' 调用例子:
    '   msgbox "Free File Name is " & _
    '          fUniqueFile("C:\DataFiles", 500, "00000", "dat")
    '   注: 没有提供文件扩展名
    '  使用文件扩展名
    '          fUniqueFile("C:\DataFiles", 500, "00000", "da", "out")
    '===============================================================

    Dim strtmpFile As String
    Dim strTmp As Variant
    Dim i As Integer
    Dim boolNextI As Boolean

    On Error GoTo funiqueFile_Error
    
    For i = 1 To intMaxFiles
        boolNextI = False
        ' 如果不是未给文件扩展文件名
        If Not IsMissing(strFileExt) Then
            strTmp = Dir(strDir & "\*." & strFileExt)
            ' 第一个文件的文件名
            strtmpFile = strFileInitName & Lpad(CStr(i), strPadChar, 5) _
                        & "." & strFileExt
        Else
            strTmp = Dir(strDir & "\*.*")
            ' 第一个文件的文件名
            strtmpFile = strFileInitName & Lpad(CStr(i), strPadChar, 5)
        End If
    
        Do While strTmp <> ""
            If strTmp = strtmpFile Then
                ' 文件存在,退出并获取下一个格式串
                boolNextI = False
                Exit Do
            Else
                ' 唯一文件
                boolNextI = True
            End If

            ' 否则比较下一个区配文件
            strTmp = Dir
        Loop
    
        If boolNextI Then
            ' 找到唯一文件名,退出For循环
            Exit For
        End If
    Next i
  
    ' 这时已经唯一文件
    fUniqueFile = strtmpFile
    
fUniqueFile_Success:
    Exit Function
funiqueFile_Error:
    fUniqueFile = vbNullString
    Resume fUniqueFile_Success
End Function


Function Lpad(Myvalue$, MyPadCharacter$, MyPaddedLength%)
    Dim PadLength As Integer
    Dim X As Integer

    PadLength = MyPaddedLength - Len(Myvalue)
    Dim PadString As String
    For X = 1 To PadLength
        PadString = PadString & MyPadCharacter
    Next
    Lpad = PadString + Myvalue
End Function
'************ Code End **********************

翻译 朱亦文


来 源 于:MVPS: The access Web

(责任编辑:admin)

顶一下
(0)
0%
踩一下
(0)
0%
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价: