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

  • SEARCH
  • Home
  • 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 8155015
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:32:35+00:00 2026-06-06T16:32:35+00:00

I have some python code using shutil.copyfile: import os import shutil src=’C:\Documents and Settings\user\Desktop\FilesPy’

  • 0

I have some python code using shutil.copyfile:

import os
import shutil

src='C:\Documents and Settings\user\Desktop\FilesPy'
des='C:\Documents and Settings\user\Desktop\\tryPy\Output'

x=os.listdir(src)
a=os.path.join(src,x[1])

shutil.copyfile(a,des)
print a

It gives me an error:

IOError: [Errno 13] Permission denied: 'C:\\Documents and Settings\\user\\Desktop\\tryPy\\Output'

Why don’t I have permission to copy the file?

  • 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-06T16:32:38+00:00Added an answer on June 6, 2026 at 4:32 pm

    From the documentation of shutil.copyfile:

    Copy the contents (no metadata) of the file named src to a file named
    dst. dst must be the complete target file name; look at shutil.copy()
    for a copy that accepts a target directory path. If src and dst are
    the same files, Error is raised. The destination location must be
    writable; otherwise, an IOError exception will be raised. If dst
    already exists, it will be replaced. Special files such as character
    or block devices and pipes cannot be copied with this function. src
    and dst are path names given as strings.

    So I guess you need to either use shutil.copy or add the file name to des:

    des = os.path.join(des, x[1])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Python 2.7 Situation: I have some piece of Python code (that the user
I have developed some code in Python using the eclipse perspective PyDev. The code
I have written some code in Python using imapclient and poplib to collect my
I am using Python to generate some data and have some code like this
I have some python code that fails: import sys print (MathCheats Times-Ed by jtl999)
I have some code creating a QTabWidget from Python using PyQt4. I want to
I have some legacy python code that using pypar and mpich2 to transmit data
I have some problems using asyncore with AF_UNIX sockets. This code import asyncore, socket,
I am using python 2.7, I have some code that looks like this: task1()
I have some python code that I wrote to convert a python list into

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.