明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1934|回复: 3

请教本站api函数getfile如何得到多文件的文件名啊?

[复制链接]
发表于 2012-4-12 21:32:07 | 显示全部楼层 |阅读模式
本帖最后由 3xxx 于 2012-4-12 21:32 编辑


http://www.mjtd.com/Functions/ArticleShow.asp?ArticleID=300
用以上本站中的getfile函数批量选择多文件的时候,显示了文件路径和文件名,文件名的排列之间有个符号,结果如上图,怎样提取这些文件名呢?向下文中:http://bbs.mjtd.com/forum.php?mod=viewthread&tid=4029&page=1#pid798
中的'由文件全路径名称返回文件的函数
Public Function JustFileName(FileName) As String
On Error Resume Next
Dim count As Integer
For count = Len(FileName) - 1 To 1 Step -1
    If Mid(FileName, count, 1) = "\" Or Mid(FileName, count, 1) = "/" Then
        JustFileName = Right(FileName, Len(FileName) - count)
        Exit For
    End If
Next
End Function
如何通过像这样一段函数得到api函数getfile所选择的多文件的文件名啊?谢谢指教!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2012-4-15 14:15:26 | 显示全部楼层
用split函数看看VB帮助吧很简单
发表于 2013-12-15 21:52:55 | 显示全部楼层
这个函数在哪下的?能不能传一份
发表于 2013-12-17 09:44:03 | 显示全部楼层
dim sFileName() as string
dim lUp as long
dim i as long
sfilename=split(filename,chr(0))
lup=ubound(sfilename)
for i = 0 to lup
     debug.print sfinename(i)
next
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 12:24 , Processed in 0.195093 second(s), 28 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表