Write a recursive function, displayFiles, that expects a pathname as an argument. The path name can be either the name of a file or the name of a directory. If the pathname refers to a file, its filepath is displayed, followed by its contents, like so: File name: file_path Lorem ipsum dolor sit amet, consectetur adipiscing elit… Otherwise, if the pathname refers to a directory, the function is applied to each name in the directory, like so: Directory name: directory_path File name: file_path1 Lorem ipsum dolor sit amet… File name: file_path2 Lorem ipsum dolor sit amet… … # Put your code here import os   #module used to interact with operating system

Write a recursive function, displayFiles, that expects a pathname as an argument. The path name can be either the name of a file or the name of a directory. If the pathname refers to a file, its filepath is displayed, followed by its contents, like so:

File name: file_path Lorem ipsum dolor sit amet, consectetur adipiscing elit…

Otherwise, if the pathname refers to a directory, the function is applied to each name in the directory, like so:

Directory name: directory_path File name: file_path1 Lorem ipsum dolor sit amet… File name: file_path2 Lorem ipsum dolor sit amet… …

# Put your code here
import os   #module used to interact with operating system

def displayFiles(pathname):  #recursive function that takes a pathname as argument

  if (os.path.isdir(pathname)):  #checks if specified path (argument) is an existing directory
      #for item in os.listdir(pathname): 
      for content in os.listdir(pathname):  #gets the list of all files and directories in the directory and iterates through the items of this list of directory
          newitem = os.path.join(pathname, item)  #
          #contents = os.path.join(pathname, content)  #joins contents of path
          
Tired of numerous paper assignments?
Rely on us and receive professional paper writing assistance!
Professional paper Writing Assistance

Who We Are

We are a professional website for customized writing. If you searched a question and stumbled into our website, you are in the right place to receive assistance with your coursework.

Do you handle any type of coursework?

Yes. We have displayed prior orders to demonstrate our experience. We can answer this question for you as we have previously. Please fill out our Order Form so that we may ensure its flawlessness. Correctly completing the order form will help our staff with reference, requirements, and future communication.

Is it hard to Place an Order?

  1. Click on the “Order Now” tab at the top menu or “GET A FREE QUOTE” icon at the bottom and a new page will appear with an order form to be filled
  2. Fill in the initial requirements in the small order form located on the home page and press “continue” button to proceed to the main order form or press “order” button in the header menu. Starting from there let our system intuitively guide you through all steps of ordering process. Submit detailed paper instructions, upload necessary files if needed and provide your contact information – you are almost done!
  3. Proceed with the payment- click on “PROCEED TO CHECKOUT” at the bottom of the page. From there, the payment sections will show, follow the guided payment process and your order will be available for our writing team to work on it. All your payments are processed securely through PayPal. This enables us to guarantee a 100% security of your funds and process payments swiftly.
  4. Delivery- Once finished, your final paper will be available for download through your personal dashboard. You will also receive an email notification with a copy of your paper attached to it.