作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何仅从文件的完整路径获取文件名?
MY path - C:\Documents and Settings\Arshad\My Documents\ravi.txt
最佳答案
看看这个: Retrieve Filename without Path or Extension .
这是上面链接中的函数:
Public Function GetFileName(flname As String) As String
'Get the filename without the path or extension.
'Input Values:
' flname - path and filename of file.
'Return Value:
' GetFileName - name of file without the extension.
Dim posn As Integer, i As Integer
Dim fName As String
posn = 0
'find the position of the last "\" character in filename
For i = 1 To Len(flname)
If (Mid(flname, i, 1) = "\") Then posn = i
Next i
'get filename without path
fName = Right(flname, Len(flname) - posn)
'get filename without extension
posn = InStr(fName, ".")
If posn <> 0 Then
fName = Left(fName, posn - 1)
End If
GetFileName = fName
End Function
C:\Documents and Settings\Arshad\My Documents\ravi.txt
ravi
Dim FileName As String
FileName = GetFileName("C:\Documents and Settings\Arshad\My Documents\ravi.txt")
关于vb6 - 如何只获取文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1403980/
我是一名优秀的程序员,十分优秀!