if the file name are matched with folder name file auto move into the folder

shariq

New Member
Joined
Mar 10, 2022
Messages
30
Office Version
  1. 2010
Platform
  1. Windows
hello excel expert first of all iam happy to contact with you on messenger i from from pakistan english is not my laguage so please try to understand my problem ... i need a program if file name are matching folder name file auto move into the folder i have 10thousand above folder in my pc and also i have some document in my pc hope u understand my problem .. some example of folder

09141 Atif Ali Shah
09142 John David
09143 Micheal Jackson

some example of documents

09141 Atif Ali Shah
09142 Johan David
09143 Micheal Jackson
 

Attachments

  • Screenshot_20220310-190646_2-compressed (1).jpg
    Screenshot_20220310-190646_2-compressed (1).jpg
    110 KB · Views: 47

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Looking at your screenshot, my understanding is that you want to move files from the Downloads folder to the matching subfolder in the Pictures folder, if that subfolder exists.

See if this macro works for you.

VBA Code:
Public Sub Move_Files_To_Matching_Folder()
    
    Dim sourceFolder As String, destMainFolder As String, destSubfolder As String
    Dim FSO As Object
    Dim FSfile As Object
    Dim FSsourceFolder As Object
    
    sourceFolder = Environ$("USERPROFILE") & "\Downloads\"
    destMainFolder = Environ$("USERPROFILE") & "\Pictures\"

    If Right(sourceFolder, 1) <> "\" Then sourceFolder = sourceFolder & "\"
    If Right(destMainFolder, 1) <> "\" Then destMainFolder = destMainFolder & "\"

    Set FSO = CreateObject("Scripting.FileSystemObject")
    
    Set FSsourceFolder = FSO.GetFolder(sourceFolder)
    For Each FSfile In FSsourceFolder.Files
        destSubfolder = destMainFolder & Left(FSfile.Name, InStrRev(FSfile.Name, ".") - 1) & "\"
        If FSO.FolderExists(destSubfolder) Then
            If FSO.FileExists(destSubfolder & FSfile.Name) Then FSO.DeleteFile destSubfolder & FSfile.Name, True
            FSfile.Move destSubfolder
        End If
    Next

End Sub
 
Upvote 0
Solution
iam so happy and very very thankfull to you thank you very much specialy thanks for johan and mrexcel plat form thanks for help me its really working this code from my side 5 * rating review love this plat form .
 
Upvote 0
Looking at your screenshot, my understanding is that you want to move files from the Downloads folder to the matching subfolder in the Pictures folder, if that subfolder exists.

See if this macro works for you.

VBA Code:
Public Sub Move_Files_To_Matching_Folder()
   
    Dim sourceFolder As String, destMainFolder As String, destSubfolder As String
    Dim FSO As Object
    Dim FSfile As Object
    Dim FSsourceFolder As Object
   
    sourceFolder = Environ$("USERPROFILE") & "\Downloads\"
    destMainFolder = Environ$("USERPROFILE") & "\Pictures\"

    If Right(sourceFolder, 1) <> "\" Then sourceFolder = sourceFolder & "\"
    If Right(destMainFolder, 1) <> "\" Then destMainFolder = destMainFolder & "\"

    Set FSO = CreateObject("Scripting.FileSystemObject")
   
    Set FSsourceFolder = FSO.GetFolder(sourceFolder)
    For Each FSfile In FSsourceFolder.Files
        destSubfolder = destMainFolder & Left(FSfile.Name, InStrRev(FSfile.Name, ".") - 1) & "\"
        If FSO.FolderExists(destSubfolder) Then
            If FSO.FileExists(destSubfolder & FSfile.Name) Then FSO.DeleteFile destSubfolder & FSfile.Name, True
            FSfile.Move destSubfolder
        End If
    Next

End Sub

Hi John. This is perfect. Can you please help me on my query its quite similar to this one. I have recently posted the thread. Your help will be highliy appreciated.
 
Upvote 0
hi john i need your help again how i can change destination folder ? "\Pictures\" this perfctly working but i could changes like this "\Employee file\" this is not working please share with me any solution please
 
Upvote 0
Downloads and Pictures are standard user folders, hence why destMainFolder = Environ$("USERPROFILE") & "\Pictures\" should work on any Windows computer for any user.

If "Employee file" is a subfolder of a standard user folder, e.g. Documents then you could use:
VBA Code:
destMainFolder = Environ$("USERPROFILE") & "\Documents\Employee file\"
Otherwise specify the full folder path:
VBA Code:
destMainFolder = "C:\folder\path\to\Employee file\"
 
Upvote 0
hi john boss i need your help again i can face some issue about script please help me i want to move file from download directory to another location ill try many time but not working look this ..
my source folder is "\Downloads\"
and my destination folder is "\D:\employee.records\desktop\backup by immad\"

i can try this but still not working please find out mistak and share with me .




Public Sub Move_Files_To_Matching_Folder()

Dim sourceFolder As String, destMainFolder As String, destSubfolder As String
Dim FSO As Object
Dim FSfile As Object
Dim FSsourceFolder As Object

sourceFolder = Environ$("USERPROFILE") & "\Downloads\"
destMainFolder = Environ$("USERPROFILE") & "\D:\employee.records\desktop\backup by immad\"

If Right(sourceFolder, 1) <> "\" Then sourceFolder = sourceFolder & "\"
If Right(destMainFolder, 1) <> "\" Then destMainFolder = destMainFolder & "\"

Set FSO = CreateObject("Scripting.FileSystemObject")

Set FSsourceFolder = FSO.GetFolder(sourceFolder)
For Each FSfile In FSsourceFolder.Files
destSubfolder = destMainFolder & Left(FSfile.Name, InStrRev(FSfile.Name, ".") - 1) & "\"
If FSO.FolderExists(destSubfolder) Then
If FSO.FileExists(destSubfolder & FSfile.Name) Then FSO.DeleteFile destSubfolder & FSfile.Name, True
FSfile.Move destSubfolder
End If
Next

End Sub
 
Upvote 0
Please use VBA code tags.

sourceFolder = Environ$("USERPROFILE") & "\Downloads\"
destMainFolder = Environ$("USERPROFILE") & "\D:\employee.records\desktop\backup by immad\"
The environment variable USERPROFILE resolves to "<drive letter>:\Users\theUsername", for example "C:\Users\User123".

Therefore your sourceFolder line is correct, but not your destMainFolder line.

For the subfolder of the user's Desktop folder use:
VBA Code:
    destMainFolder = Environ$("USERPROFILE") & "\Desktop\backup by immad\"
 
Upvote 0
jhon can you share with me full script i can not understand if u share with me then i can just copy and past in a vba .
 
Upvote 0
You've already posted the full script. I'm saying that the destMainFolder line is incorrect (because of the "\D:\" in the middle of the string, for one thing).

Therefore, replace:
VBA Code:
destMainFolder = Environ$("USERPROFILE") & "\D:\employee.records\desktop\backup by immad\"
with:
VBA Code:
destMainFolder = Environ$("USERPROFILE") & "\Desktop\backup by immad\"
 
Upvote 0

Forum statistics

Threads
1,215,551
Messages
6,125,478
Members
449,233
Latest member
Deardevil

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