Excel VB; find, copy, and rename file problem

govern

New Member
Joined
Jan 21, 2009
Messages
2
Hi, I am relatively new to Excel VB and have been stumped. I need help writing code that finds a file of any type e.g. (xls, xlsx, doc, docx, ppt, txt) copies and renames it with the appropriate extension to another specified folder. In addition, the user will not be allowed to find the file to be copied, rather the file must be found using code to search for a known text string within the file's name in a specified folder (assuming only one file has the text string within that folder). As this workbook needs to be readily distributable to unskilled users it can not require adding references manually or programmatically.
I would surely appreciate any advice or help on this matter, thanks very much
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
never mind, here's what I came up with...

Private sub nuttin()

Dim TemplateFileName As String
Dim Currentpath As String
Dim TargetPath As String
Dim FileNameExtension As String
Dim FullPathName As String
Dim ManifestTemplateFileNameExtension As String
Dim MTFNE As String, RTFNE As String
Dim DirectoryFolder As String
Dim RouteClearanceDirectory As String

RouteClearanceDirectory = "C:\RouteClearance" ' this should eventually reference a sheet cell
' whereby the user can change the root directory of the system

ManifestLine: 'linelabel

DirectoryFolder = "\MissionManifest" ' this must change for
TargetPath = RouteClearanceDirectory & DirectoryFolder

TemplateFileName = Dir(TargetPath & "\TEMPLATE*") ' wildcard path search for template existence
If TemplateFileName = "" Then
MsgBox ("There was no template file found")
GoTo ReportLine
End If
FullPathName = TargetPath & "\" & TemplateFileName

' calls function GetFileExtension which extracts the extension name from the TemplateFileName
ManifestTemplateFileNameExtension = GetFileExtension(FullPathName)
MTFNE = ManifestTemplateFileNameExtension

' takes template and creates copy by specified name in same directory
Set fs = CreateObject("Scripting.FileSystemObject")
fs.CopyFile FullPathName, TargetPath & "\" & PLT & "_" & DD & SPTM & "C" & MMM & YY & _
"_MISSION_MANIFEST." & MTFNE

' establishes hyperlinks in the sheet .....needs refinement
AddressString = TargetPath & "\" & PLT & "_" & DD & SPTM & "C" & MMM _
& YY & "_MISSION_MANIFEST." & MTFNE
r1.Cells(1, 6).Select ' cells where report hyperlink should go
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:=AddressString


ReportLine: 'linelabel

DirectoryFolder = "\MissionReport" ' this must change for
TargetPath = RouteClearanceDirectory & DirectoryFolder

TemplateFileName = Dir(TargetPath & "\TEMPLATE*") ' wildcard path search for template existence
If TemplateFileName = "" Then
MsgBox ("There was no template file found")
GoTo AddFileFinishedLine ' change for additional templates
End If
FullPathName = TargetPath & "\" & TemplateFileName

' calls function GetFileExtension which extracts the extension name from the TemplateFileName
ReportTemplateFileNameExtension = GetFileExtension(FullPathName)
RTFNE = ReportTemplateFileNameExtension

' takes template and creates copy by specified name in same directory
Set fs = CreateObject("Scripting.FileSystemObject")
fs.CopyFile FullPathName, TargetPath & "\" & PLT & "_" & DD & SPTM & "C" & MMM & YY & _
"_PATROL_REPORT." & RTFNE

' establishes hyperlinks in the sheet .....needs refinement
AddressString = TargetPath & "/" & PLT & "_" & DD & SPTM & "C" & MMM _
& YY & "_PATROL_REPORT." & RTFNE
r1.Cells(1, 22).Select ' cells where report hyperlink should go
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:=AddressString
r1.Cells(1, 22).Value = PLT & "_" & DD & SPTM & "C" & MMM & YY & "_PATROL_REPORT." & RTFNE

AddFileFinishedLine: 'linelabel indicating completion of support file addition routine


Range("F9").Select
Call Protector

End Sub

Public Function GetFileExtension(ByVal Path As String) As String
Dim I As Integer
For I = Len(Path) To 1 Step -1
If Mid(Path, I, 1) = "." Then Exit For
Next I

GetFileExtension = Right(Path, Len(Path) - I)
End Function
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top