How to Make a Copy of a File, Folder, or Document (Any Device)

Making a copy sounds simple — and often it is. But depending on what you're copying, where it lives, and what you plan to do with the duplicate, the method and outcome can vary quite a bit. Here's a clear breakdown of how copying works across different environments, and what to keep in mind before you do it.

What "Making a Copy" Actually Means

When you copy a file or folder, you're creating a duplicate of the original data at a new location. The original stays intact. This is different from:

  • Moving — which relocates the file and removes it from the original location
  • Cutting and pasting — which moves, not duplicates
  • Syncing — which mirrors files across locations but ties them together
  • Backing up — which often involves versioning and archiving, not just duplication

A true copy is independent. Changes to the copy don't affect the original, and vice versa — unless the file type or software introduces linked behavior (more on that below).

How to Copy Files on Different Operating Systems

Windows

The most common methods:

  • Right-click → Copy, then navigate to a destination and right-click → Paste
  • Select the file and use Ctrl + C, then Ctrl + V
  • In File Explorer, use the Copy to option in the toolbar
  • Hold Ctrl while dragging a file to a new folder to copy instead of move

By default, Windows appends "Copy" to the filename if you paste into the same folder.

macOS

  • Right-click → Copy, then paste with Command + V
  • Use Command + C / Command + V
  • In Finder, hold Option while dragging a file to copy it to a new location — the cursor shows a green + icon to confirm it's copying, not moving

macOS will add "copy" to the filename when duplicating within the same folder.

iOS and Android

Mobile operating systems handle file copying through their file manager apps:

  • iOS: Use the Files app — long-press a file, tap Copy, navigate to a destination, then tap Paste
  • Android: Use Files by Google or the built-in file manager — long-press to select, tap the copy icon, then choose a destination

Some third-party apps (like document editors or photo apps) have their own internal duplicate functions that don't interact with the system file manager.

Copying Documents in Cloud and Productivity Apps 📄

Cloud-based tools behave differently from local file systems. In Google Docs, Sheets, or Slides, the standard method is:

File → Make a copy

This creates a new, independent document in your Google Drive. The copy isn't linked to the original — edits in one won't affect the other. You can also choose to share it with the same people or start fresh with new sharing settings.

In Microsoft 365 (OneDrive), you can duplicate files directly from the OneDrive web interface or via File Explorer on Windows. Within Word, Excel, or PowerPoint, File → Save a Copy lets you save an independent version under a new name or to a different location.

Notion, Confluence, and other workspace tools often have a "Duplicate page" option — but these duplicates may still inherit permissions or workspace settings depending on how the tool handles access control.

What Happens to Metadata and Permissions When You Copy?

This is where things get less obvious. A copy isn't always a perfect clone:

PropertyTypically CopiedTypically Not Copied
File content✅ Yes
File name✅ Yes (often modified)
File size✅ Yes
Creation dateSet to current date/time
Modification dateVaries by OS
Permissions/ACLs❌ Usually resetEspecially on cloud platforms
Version historyStarts fresh
Sharing settings❌ Usually reset

This matters most in business or collaborative environments where permissions, audit trails, and version history carry real significance.

Copying Folders vs. Individual Files

Copying a folder copies its entire contents recursively — every subfolder, every file inside it. On most systems, this is handled automatically, but it's worth knowing:

  • Large folders can take significant time and storage
  • Symlinks (shortcuts/aliases) inside a folder may or may not be followed depending on the OS and copy method
  • On cloud storage platforms, copying a folder may trigger re-upload of all contents rather than a server-side duplication, which uses bandwidth and time

Shallow Copy vs. Deep Copy (For Developers) 🖥️

If you're working with code or data structures rather than files, "copy" takes on additional meaning:

  • A shallow copy duplicates the top-level structure but references the same nested objects in memory
  • A deep copy duplicates everything, including nested objects, creating a fully independent version

In Python, for example, copy.copy() performs a shallow copy while copy.deepcopy() creates a full independent duplicate. Most languages have equivalent distinctions. Which one you need depends entirely on whether your code modifies nested data after copying.

Factors That Affect How Copying Works for You

The right approach — and what the result looks like — depends on several variables:

  • Where the file lives: Local drive, external drive, cloud storage, or shared network folder each have different behaviors
  • File type: Some formats (like linked spreadsheets or design files with external assets) have dependencies that a simple copy doesn't capture
  • OS and version: Behavior around metadata, permissions, and symlinks differs between Windows, macOS, and Linux
  • App vs. file system copy: Copying from within an app often preserves more context than copying at the OS level
  • Collaborative environments: Copying files shared with a team may strip access or duplicate ownership in ways that require manual correction

Whether a simple Ctrl+C is enough — or whether you need to use an app's built-in duplicate feature, export a package, or script a recursive copy with preserved attributes — comes down to what the file is, where it lives, and what you need the copy to do.