Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to move the file from one location to another folder using VBA , But i am getting error msg . Could you please help me

Below is my code

For m = 1 To fnum
    MsgBox " Please Select " & m & "files"
    ffiles(m) = Application.GetOpenFilename
Next m

If Dir(outputfolder) = "" Then
    fso.createfolder (outputfolder)
End If

fso.Movefile ffiles(m), outputfolder  " getting error at this place "
share|improve this question
3  
And that error message is... ? – LittleBobbyTables Jan 24 at 15:04
Error message id "Runtime error 438 . Object doesnt support this property " – newjenn Jan 24 at 15:11
For starters, I don't see fso declared anywhere in that code. Second of all, why create an array of ffiles and then only move the last file? – LittleBobbyTables Jan 24 at 15:13
Above i gave just part of the program I declared fso as object Dim fso As Object Set fso = CreateObject("scripting.filesystemobject") I need to copy the files and consolidated into one . So i am taking file name as ffiles(m) in array . so that i can copy many files and consolidated as one . – newjenn Jan 24 at 15:19

1 Answer

up vote 1 down vote accepted

My favorite way of doing it. Using the SHFileOperation API

Option Explicit

Private Declare Function SHFileOperation Lib "shell32.dll" _
Alias "SHFileOperationA" (lpFileOp As SHFILEOPSTRUCT) As Long

Private Const FO_MOVE As Long = &H1
Private Const FOF_SIMPLEPROGRESS As Long = &H100

Private Type SHFILEOPSTRUCT
    hWnd As Long
    wFunc As Long
    pFrom As String
    pTo As String
    fFlags As Integer
    fAnyOperationsAborted As Long
    hNameMappings As Long
    lpszProgressTitle As Long
End Type

Sub Sample()
    Dim fileToOpen As Variant
    Dim outputfolder As String
    Dim i As Long

    outputfolder = "C:\Temp\"

    fileToOpen = Application.GetOpenFilename(MultiSelect:=True)

    If IsArray(fileToOpen) Then
        If Dir(outputfolder) = "" Then MkDir outputfolder

        For i = LBound(fileToOpen) To UBound(fileToOpen)
            Call VBCopyFolder(fileToOpen(i), outputfolder)
        Next i
    Else
          MsgBox "No files were selected."
    End If
End Sub

Private Sub VBCopyFolder(ByRef strSource, ByRef strTarget As String)
    Dim op As SHFILEOPSTRUCT
    With op
        .wFunc = FO_MOVE
        .pTo = strTarget
        .pFrom = strSource
        .fFlags = FOF_SIMPLEPROGRESS
    End With
    '~~> Perform operation
    SHFileOperation op
End Sub
share|improve this answer
Thanks alot @sidhhart rout – newjenn Jan 24 at 16:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.