Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations GregLocock on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB Script Help

Status
Not open for further replies.

robertdjones

Computer
Nov 28, 2005
1
I am looking for some information on how to manipulate file names in VB. I need to strip extraneous information off of a file name?

Convert a file named 4445555_27_Folder_FileName.tiff into 4445555_27_FileName.tiff (stripping the folder section out).
 
Replies continue below

Recommended for you

replace("4445555_27_Folder_FileName.tiff", "_Folder","")

For manipulating path names you may want to look at Scripting.FileSystemObject.

You may also want to look at the Split and Instr functions.
 
Something like

Function GetFileTitle(fname As String) As String
Dim fso As New FileSystemObject
GetFileTitle = fso.GetFileName(fname)
End Function

You have to have a project reference to Microsoft Scripting Runtime

And there are many other useful things like getting the folder name and much more.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor