设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

获取唯一的文件名

1970-1-1 08:00| 发布者: Dev Ashish| 查看: 966| 评论: 0

 我每天都要从数据库中导出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 **********************

最新评论

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-4-4 05:17 , Processed in 0.084274 second(s), 17 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

返回顶部