|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Library Reference > File > DBWFileNameFromFullName |
Retrieves the file name from the full (with the entire path) file name
Function DBWFileNameFromFullName(FullFileName)
FullFileName |
is the entire path (comprehensive of directories) |
A string containing the file name of the document
fullfilename = "c:\dirone\dirtwo\dirthree\test.sldasm"
filename = DBWFileNameFromFullName(fullfilename)
DBWMsgBox filename
' it prints "test.sldasm"