Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8604367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:33:20+00:00 2026-06-12T02:33:20+00:00

I was looking to copy a whole directory and its files but also printing

  • 0

I was looking to copy a whole directory and its files but also printing each file name that its being copied.

I was using a simply call to cp -rf dir dest with os.system but I cant print each filename separately as obvious.

I then thought about listing eash directory file by calling recursively ls with os.system, saving the whole string, split them on an array, and implement a for loop to run os.system(“cp ” file1 + ” des/”) and printing the filename, but it looks like lot of work.

Any better ideas to accomplish this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T02:33:21+00:00Added an answer on June 12, 2026 at 2:33 am

    You can use os.walk to get the entire directory listing and use that listing to copy all files iteratively. Something like

    file_paths = [os.path.join(root, f) for root, _, files in os.walk('.') for f in files]
    for path in file_paths:
        print path
        shutil.copy(path, target)
    

    Alternatively according to MatthewFranglen‘s comment you can just do shutil.copytree(src, dst). That will also allow you to ignore things but you’ll need to define a function to do that instead of using an if in the list comprehension.

    # ignore all .DS_Store and *.txt files
    file_paths = [os.path.join(root, f) for root, _, files in os.walk('.') for f in files if (f != '.DS_Store') or f.endswith('.txt'))]
    

    compared to

    from shutil import copytree, ignore_patterns
    ignore_func = ignore_patterns('.DS_Store', '*.txt')  # ignore .DS_Store and *.txt files
    copytree('/path/to/dir/', '/other/dir', ignore=ignore_func)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for batch file code that will copy folders specified in a text
I am looking to copy files from a directory structure over to a new
I have an application that is looking through some files for old data. In
I'm looking to copy a row from one sheet to another based upon having
We're looking into running multiple instances of Tomcat from the same copy of the
I am looking for a good word count class or function. When I copy
I am looking for an alternative to Test Professional/Team Server that hopefully is free.
I have a program that load data from a file using std::ifstream and store
I've been looking around for a solution to this, but haven't quite found one.
I have been looking around for an answer to this, but couldn't really find

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.