Coding⏱️ 4 min read📅 2026-06-11

How to Fix: copy same file into multiple directories - permission denied error

Copy file to multiple directories with permission denied error.

Quick Answer: Use the -t option with find to specify the target directory for each copy operation.

The 'copy same file into multiple directories - permission denied error' occurs when you try to copy a file to one or more directories where your user account lacks write permissions. This issue affects users who are trying to automate file copying tasks using commands like the `find` and `cp` commands.

This error can be frustrating, especially if you're working with large files or multiple directories. However, don't worry; we'll walk you through a step-by-step solution to resolve this issue.

💡 Why You Are Getting This Error

  • The primary reason for this error is that the user account running the `find` and `cp` commands lacks write permissions in one or more of the target directories. This can happen if the user account doesn't have the necessary permissions, or if the directory structure is complex with multiple levels of subdirectories.
  • Alternatively, another reason could be that the file being copied already exists in one of the target directories, causing the `cp` command to fail.

🚀 How to Resolve This Issue

Chown and Chmod the Target Directories

  1. Step 1: Change the ownership of the target directories to the user account running the `find` and `cp` commands. You can do this using the `chown` command: `sudo chown -R $USER:groupname /path/to/target/directory`. Replace `/path/to/target/directory` with the actual path to the directory you want to modify, and `groupname` with the actual group name.
  2. Step 2: Change the permissions of the target directories to allow write access for the user account. You can do this using the `chmod` command: `sudo chmod -R u+w /path/to/target/directory`. Replace `/path/to/target/directory` with the actual path to the directory you want to modify, and `u+w` with the desired permissions (e.g., `u+xw` for read, write, and execute permissions).
  3. Step 3: Run the original command again using the `find` and `cp` commands: `find . -type d -exec cp ./info.txt {}/ brakk

Use Sudo with Explicit Permissions

  1. Step 1: Run the original command again, but this time use the `sudo` command to specify explicit permissions for the copy operation. You can do this using the `-R` option: `sudo find . -type d -exec cp -R u+w ./info.txt {}/ brakk`. This will ensure that the file is copied with read and write permissions for all users in the target directory.
  2. Step 2: Note that using `sudo` with explicit permissions may not be necessary if you've already changed the ownership and permissions of the target directories as described in Method 1.

✨ Wrapping Up

To resolve the 'copy same file into multiple directories - permission denied error,' try changing the ownership and permissions of the target directories to allow write access for your user account, or use `sudo` with explicit permissions. Remember to always verify the file system permissions and directory structure before running commands that may affect them.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions