|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Library Reference > File > DBWFileNameNoExt |
Retrieves the file name without extension from the file name
Function DBWFileNameNoExt(FileName)
FileName |
is the name of the file |
A string containing the file name of the document without extension
filename = "test.sldasm"
filenamenoext = DBWFileNameNoExt(filename)
msgbox filenamenoext
'it prints "test."