KutoolsforOffice — One Suite. Five Tools. Get More Done.March Sale: 20% Off

Copy all open Word documents at once

AuthorAmanda LiLast modified

When you have multiple Word documents open, you may need to copy them to another folder for backup, sharing, uploading to cloud storage, transferring to another computer, or attaching them to emails. Word does not provide a direct command to copy all open documents at once, but there are several reliable ways to accomplish this.

In this tutorial, you will learn three practical methods. You can manually save each open document into one folder, use Kutools for Word to copy all open documents with one click, or use a VBA macro to automatically copy all open and saved files to a folder you choose.


Use Save As to save each open document to one folder

This method works in all Word versions. You save every open document into the same folder first. After that, you can select all the files in that folder and copy them together, or attach them together in an email.

Navigate through documents using Office Tab

Office Tab

Tabbed navigation for Word, Excel, PowerPoint, and more—just like a web browser, with smooth switching in one window.

  1. In Word, switch to the first open document.
  2. Click File > Save As, then select Browse.
    Click File, then Save As, and select Browse in Word
  3. In the Save As window, navigate to the destination folder. Make sure the folder name appears in the address bar, then click Save.
    Save As window showing how to select a destination folder in Word
  4. Repeat the same steps for each open document, always choosing the same folder.
  5. When done, open that folder in File Explorer, press Ctrl + A to select all files, then right click and choose Copy.
    Select all files in a folder and right click to copy them in File Explorer

All selected documents are now copied and ready to be pasted into a new location or attached to an email.

Note:

In this method, be sure to use Save As instead of Save. Save only updates the document in its current location. Save As, on the other hand, allows you to choose a different folder and create a copy there, which is necessary when gathering all open documents into one folder.

Pros

  • Works in any Word version
  • No add ins required
  • Easy for small sets of files

Cons

  • Manual if you have many documents open
  • Easy to miss a file if you switch between many windows

Copy all open documents with one click using Kutools for Word

If you frequently need to copy or collect multiple open documents, Kutools for Word can save you time. It provides a built-in feature that allows you to copy all currently open documents to a selected folder with just one click.

Kutools for Word

Kutools for Word helps you handle everyday document tasks faster with practical tools built right into Microsoft Word—no coding, no complex setup.

  • AI writing, polishing, translation, and summarization
  • Batch find and replace across documents
  • Merge and split Word documents easily
  • Batch Word ↔ PDF conversion
  1. Open Word and make sure all the documents you want to copy are currently open and have been saved.
  2. On the Kutools Plus tab on the ribbon, click More > Copy All Open Files.
    Click Copy All Open Files on the ribbon
  3. A dialog box will appear confirming that the files have been copied successfully. Click OK.
    Copy successful dialog in Kutools

After clicking Copy All Open Files, the selected documents are copied to the clipboard. You can then open any destination folder and press Ctrl + V to paste them there, or paste them directly into an email window as attachments.

Note:

Make sure all open documents are saved before using this feature. If any document contains unsaved changes, it will not be copied successfully. Kutools will list the failed files so you can save them and try again.

Notification of files that failed to copy in Kutools

Pros

  • One click solution for multiple open documents
  • Much faster than manual saving and copying
  • Clearly notifies you if any files fail to copy
  • Ideal for repeated workflows

Want a faster way to handle similar tasks in Word? Try Kutools for Word and simplify your daily work.


Copy all open documents automatically with VBA

If you prefer an automatic method without using add-ins, you can use a VBA macro. This macro copies every open and saved document to a folder you select. It copies the files directly from their original locations, so the currently open documents remain unchanged.

  1. In Word, press Alt + F11 to open the VBA editor.
  2. Click Insert > Module.
    Insert a new module in the VBA editor by clicking Insert then Module
  3. Paste the following code into the module.
    Option Explicit
    
    Sub CopyAllOpenDocuments()
    
        Dim doc As Document
        Dim destFolder As String
        Dim src As String, dst As String
        Dim fso As Object
        Dim count As Long
    
        With Application.FileDialog(msoFileDialogFolderPicker)
            If .Show <> -1 Then Exit Sub
            destFolder = .SelectedItems(1)
        End With
    
        If Right(destFolder, 1) <> "\" Then destFolder = destFolder & "\"
    
        Set fso = CreateObject("Scripting.FileSystemObject")
    
        For Each doc In Application.Documents
            If doc.Path <> "" Then
                src = doc.FullName
                dst = destFolder & doc.Name
    
                If LCase$(src) <> LCase$(dst) Then
                    fso.CopyFile src, dst, True
                    count = count + 1
                End If
            End If
        Next doc
    
        MsgBox count & " document(s) copied successfully.", vbInformation, "Kutools for Word"
    
    End Sub
  4. Press F5 to run the macro.
  5. A folder selection dialog will appear. Choose the destination folder where the open documents should be copied, then click OK.
    Select a destination folder in the folder picker dialog
  6. A confirmation dialog will appear showing how many documents were copied successfully.
    Confirmation message showing the number of copied documents

All eligible open documents are now copied to the selected folder. You can open that folder to view, move, upload, or attach the copied files as needed.

Note:

  • This macro copies only documents that have been saved at least once. New, unsaved documents will be skipped.
  • If a document contains unsaved changes, only the last saved version will be copied.

Pros

  • Copies all open documents in one run
  • No add-ins required
  • Original files remain unchanged

Cons

  • Macros may be blocked by company security policies
  • Unsaved changes will not be included

Which method should you use

MethodBest forLimitations
Save As to one folderGathering a few open documents (2–3)Manual if you have many files
Kutools for WordCopying all open documents with one clickRequires Kutools installation
VBA macroAutomatic copying to a folder without add insRequires macros enabled

Conclusion

If you only need to do this occasionally and have just a few open documents, saving them into one folder is usually enough. If you do this frequently or work with many open files, Kutools for Word can save time with its one-click approach. For a fully automated solution without add-ins, VBA is the most flexible option.

I hope you found this tutorial helpful. If you’d like to explore more Word tips and practical solutions, please click here to browse our full collection of Word tutorials.