设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

获取文件后缀

1970-1-1 08:00| 发布者: harsonliao| 查看: 2071| 评论: 0

Function GetFileSuffix(strFileName As String) As String

'返回文件后缀

Dim I As Integer

For I = Len(strFileName) To 1 Step -1
'文件名中不允许有"\"字符,如先返回"\"则此文件没有后缀

If Mid$(strFileName, I, 1) = "\" Then
GetFileSuffix = ""
Exit Function
End If

If Mid$(strFileName, I, 1) = "." Then
GetFileSuffix = Mid$(strFileName, I)
Exit Function
End If
Next I

End Function

最新评论

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

GMT+8, 2025-4-4 18:38 , Processed in 0.063245 second(s), 17 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

返回顶部