The shutil tag has no wiki summary.
0
votes
3answers
13 views
Downloading web image w/ urlopen/shutil : error __exit__
I'm trying to download images with shutil/urlopen because of deprecated? I'm not sure if its deprecation, but urlretrieve doesn't download the file, it just creates folder of the image name instead. ...
0
votes
1answer
51 views
Python Cannot create a file error [Error : 183]
I am using the following code to copy the contents of one directory to another directory (python)
...
0
votes
1answer
47 views
Permission denied doing os.mkdir(d) after running shutil.rmtree(d) in Python
Very often in the Windows 7 console if I run a python program twice very quickly that does
if os.path.isdir(d):
shutil.rmtree(d)
if not os.path.exists(d):
os.mkdir(d)
where d is the name of ...
-1
votes
2answers
22 views
Python: Copying a file with shutil
I'm trying to copy my places.sqlite info to my desktop with python. It is stored at users\username\AppData\Roaming\Mozilla\Firefox\Profiles\rh425234.default\places.sqlite
However, what is want is to ...
0
votes
3answers
54 views
Copy Files From List Python
Im making a small python program to copy some files. My filenames are in a list "selectedList".
The user has selected the source dir "self.DirFilename" and the destination dir "self.DirDest".
I'm ...
0
votes
1answer
50 views
Python: Create a list of nonmatching values
I've been working on program which searches a folder and finds matching files names based on a list of vaules from an input list and then copies them to a folder. The program works but now I want to ...
0
votes
1answer
42 views
Use shutil.make_archive with zipfile.ZIP_STORED?
In Python is there a way to use the shutil.make_archive() function with file compression set to zipfile.ZIP_STORED ? (that is, uncompressed)
The document shows that there are many optional ...
3
votes
4answers
63 views
shutil.copytree without files
I'm trying use shutil.copytree:
shutil.copytree(SOURCE_DIR, TARGET_DIR, ignore=None)
This copy also files in folder. I need copy only folders without ANY files. How to do it?
0
votes
1answer
48 views
Delete multiple directories in python
In python, I understand that I can delete multiple files with the same name using the following command for eg:
for f in glob.glob("file_name_*.txt"):
os.remove(f)
And that a single directory ...
0
votes
2answers
69 views
Copy a file into a directory with its original leading directories appended
I wonder if python provides a canonical way to copy a file to a directory with its original leading directories appended, like cp --parents does. From cp man page :
`--parents'
[...]
cp ...
0
votes
2answers
64 views
Copy contents from one directory and paste in another, IOError: [Errno 13] python
I've looked through the forum at several posts similar to this w/ the same error, but am still unable to fix it. I am getting the IOError: [Errno 13] Permission denied: 'C:/..../.' when using ...
0
votes
2answers
161 views
Copy directory contents into a directory with python
I have a directory /a/b/c that has files and subdirectories.
I need to copy the /a/b/c/* in the /x/y/z directory. What python methods can I use?
I tried shutil.copytree("a/b/c", "/x/y/z"), but python ...
0
votes
0answers
16 views
CGI and shutil.copy2
I am trying to copy a dynamically created file from the cgi-bin directory to the www directory. It works if I run the command in Terminal but it does not work if I run it in the browser. I even ...
0
votes
1answer
93 views
wait for shutil.copyfile to finish
I want to copy a file then start writing the new file:
shutil.copyfile("largefile","newlargefile")
nwLrgFile=open("newlargefile",'a')
nwLrgFile.write("hello\n")
However, when I do the above hello ...
1
vote
1answer
92 views
implementing a recursive copy in Python with special case handling
I'd like to implement a version of cp -r in Python that handles certain directories in a special way. If you do mycp.py -r indir outdir, I'd like indir and all of its files/subdirectories to be copied ...
0
votes
1answer
237 views
Copy restricted files using shutil.copyfile without being root in Python
One of the task that my python script does is to extract an entire Linux Root FS tarball and then copy files from it into a destination directory. While doing so, I am getting the error in case of ...
0
votes
1answer
53 views
error says \\\\Ref\\builds/out exists but it doesnt exist
I am trying to copy a source code tree using the below code and running into an error,am not sure why I am getting this?error says \\Ref\builds/out exists but it doesnt exist,"out" is the directory ...
1
vote
1answer
175 views
How to match and move files into corresponding folders using Python
I am fairly new to programing and this is my first stab at creating a complex script using Python
The purpose of the program I am creating is:
to go through a list of files (360 files altogether ...
1
vote
1answer
268 views
Python script for moving directories/files while ignoring certain directories/files using shutil?
I'm looking to build a python script that moves files/directories from one directory to another while referencing a list that notes the files to be copied over.
Here is what I have thus far:
import ...
0
votes
1answer
250 views
shutil.move IOError: [Errno 2] - When in loop [closed]
If I run shutil.move(file, dest) on its own it works fine, the problem I'm having is when I loop through, the loop works fine without the shutil.move.
IOError: [Errno 2] No such file or directory: ...
1
vote
2answers
281 views
Cannot copy file from a remote machine using shutil
I need to copy a file from a remote machine.
The code is something like this
import shutil
shutil.copyfile('//XXX.XXX.XXX.XXX/home/Shares Folder/file.txt','/home/file.txt')
the location of the ...
1
vote
2answers
140 views
Winzip cannot open an archive created by python shutil.make_archive on windows. On ubuntu archive manager does fine
I am trying to return a zip file in django http response, the code goes something like...
archive = shutil.make_archive('testfolder', 'zip', MEDIA_ROOT, 'testfolder')
response = ...
0
votes
2answers
105 views
Trying to copy all Excel files in a directory, but nothing happens and no errors are called
I'm writing a python script to copy all Excel files in a tree of directories to another directory. Straightforward, right?
Well, for some reason shutil.copy (or copy2, or copyfile for that matter) ...
1
vote
5answers
209 views
For every x number of files; create new directory and move files — using Python
I have a directory with a few thousand files. I'd like to be able to make sub directories inside the larger director and move exactly 150 files (filtered by extension) into each of the newly created ...
0
votes
2answers
175 views
how to instal or copy font file to windows fonts folder
I am performing a simple operation to copy font file(ttf extension) from a downloaded location to fonts folder, but its not working,
usrPath = os.environ['USERPROFILE']
src=downloadFont()
...
0
votes
2answers
619 views
Python shutil.copytree function not working
I feel like I am either missing something basic here are something wonky is going on. I have read the docs and understand that copytree must specify both a source path and a destination path. I am ...
1
vote
2answers
72 views
Returning function from function in Python
I am a newbie to Python, i am having some doubts on working of below mentioned code snippet from shutil module.
def ignore_patterns(*patterns):
"""Function that can be used as copytree() ignore ...
3
votes
4answers
99 views
Print character while copying big folder
I have this function trying to print additional '.' every second while it's copying a big folder (~3GB) from one place to another:
def copy_folder(source, destination):
print 'copying',
while ...
0
votes
2answers
145 views
How to move only *.java files with python?
I have such dir tree:
dir1
- dir2
- dir3
- file1.java
- file2.java
- file3.cpp
and I want to move only *.java files to brand new directory called 'java_files' in current directory. How to ...
0
votes
1answer
232 views
python copy file with meta data, shutil vs manually opening and writing a duplicate file
According to http://docs.python.org/library/shutil.html using these methods will not copy over meta-data including ownership, ACL's, and resource forks. Would opening the file using the basic file ...
1
vote
3answers
473 views
How do I create a zip file of a file path using Python, including empty directories?
I've been trying to use the zipfile and shutil.make_archive modules to recursively create a zip file of a directory. Both modules work great--except empty directories do not get added to the archive. ...
0
votes
2answers
245 views
Move files with spaces in the name
I am trying to move some files in python, but they have spaces in the name. Is there any way to specifically tell python to treat a string as a file name?
listing = ...
1
vote
1answer
1k views
IOError: [Errno 2] No such file or directory shutil
im haveing a really simple code but for some reason i get Err no 2
here is the code :
import os, shutil
src=r"C:/Documents and Settings/user/Desktop/FilesPy"
des=r"C:/Documents and ...
-1
votes
1answer
2k views
Python IOError: [Errno 13] Permission denied:
i have a preaty simple code writen in python
import os
import shutil
src='C:\Documents and Settings\user\Desktop\FilesPy'
des='C:\Documents and Settings\user\Desktop\\tryPy\Output'
...
0
votes
1answer
157 views
Shutil move function gives invalid arguement error PYTHON
I am writing some code that will go through a file, edit it as a temp file, and than copy the temp file over the new file so as to make the edit. However when using the move method from shutil I keep ...
1
vote
2answers
2k views
shutil.rmtree() clarification
I have read the doc's on this function, however, I dont think i am understanding this properly,and if anyone can tell me what im thinking wrong, or if i am correct, it would be a great help. Here is ...
0
votes
1answer
229 views
Python - shutil seems to be not making a true binary copy of a file
Following the excellent advice of a poster yesterday I started using the shutil.copyfileobj method to make a copy of a file.
My program should make an exact copy of the file, remove the last byte ...
1
vote
3answers
766 views
Problems with shutil.copytree
I want to copy folder from my local server on my computer, using function shutil.copytree, i using macOS, but today i have problem,python always show me the same message,"[error 1] operation not ...
1
vote
4answers
288 views
How to copy file to path that contains ampersand '&' using Python's shutil?
I am complete newbie in Python and have to modify existing Python script. The script copies file to other path like following:
err=shutil.copyfile(src, dst)
This works unless dst contains character ...
1
vote
4answers
88 views
shutil not storing path for random select/copy of files?
[Edit: see final code below] I'm using the code below to randomly select 5 files from a source directory and then copy them to a new directory. It's giving me an IO error in which it says "No such ...
0
votes
2answers
79 views
Where is the 'r/' coming from when I use shutil in this function? [closed]
def move_file(dirs,src,dst):
src = src+".jpg"
dst = item[1]+"/"+src
print src
# Moves the file
shutil.copyfile(src, dst)
move_file(dirs,item[0],item[1])
gives me this ...
2
votes
2answers
1k views
Python - Create directory and move specific file
Learning and understanding Python better I want to write a script based on youtube-dl that downloads a playlist and moves all those flv videos in a specific directory.
This is my code so far:
...
1
vote
2answers
140 views
Error 'not subscriptable' when calling the function
I have the function below that copies a file in a directory and recreate it in the directory where the function is called. When I am running the code part by part in ipython, it is working fine. ...
2
votes
1answer
586 views
shutil.copy2 - Behaviour with different file systems and pseudo files
I have written a small script to synchronize two directories. The script allows to sync certain file types and allows file comparison by checksum or date.
After comparison a list of files that should ...
2
votes
4answers
978 views
Moving specific files in subdirectories into a directory - python
Im rather new to python but I have been attemping to learn the basics to help in my research within geology.
Anyways I have several files that once i have extracted from their zip files (painfully ...
0
votes
1answer
452 views
shutil.rmtree(…) does not work in my script
I try to delete a created directory in my destructor:
shutil.rmtree("C:\\projects\\project_alpha\\tmp")
It does not work with my python script but when I execute this command via python console it ...
4
votes
3answers
1k views
Filter directory when using shutil.copytree?
Is there a way I can filter a directory by using the absolute path to it?
shutil.copytree(directory,
target_dir,
ignore = ...
0
votes
1answer
156 views
copying file with shutil.copy2 in python creates file of zero Kbs
hi i am trying to copy a file using shutil.copy2 but it creates a file of zero Kb at the destination..i am using mac os 10.6.7 .The problem is not with all files but some specific files only .The ...
0
votes
2answers
542 views
move a file to the current directory using shutil module
I know this may sound really stupid, but how can I move a file in a directory a user browsed to ( I named mine filedir) to the current directory I am in?
for example: I have a file called ...
1
vote
2answers
2k views
Python recursive find files and move to one destination directory
The script should recursively go through the rootpath directory and find all files with *.mp4 extension. Print the list of files with the directory structure. Then move the files to the destDir ...




