`os.walk()` is a Python function which serves to walk a directory tree.
1
vote
3answers
44 views
Need the path for particular files using os.walk()
I'm trying to perform some geoprocessing. My task is to locate all shapefiles within a directory, and then find the full path name for that shapefile within the directory. I can get the name of the ...
0
votes
1answer
38 views
iterating over specific directories in python
I am trying to read directories within directories to gain access to specific files.
Now while I am able to go within all sub - directories to get the directories I want ( basically all directories ...
-2
votes
2answers
59 views
Using a raw string with os.walk()
I'm trying to get os.walk() to work in a program I'm working on, but I keep getting the error:
ValueError: invalid \x escape
From looking around online, I've seen that the error can arise from not ...
-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
1answer
40 views
How can I ignore specific files when I am parsing a directory?
I am trying to parse this directory and I want to see all the txt files except for three specific names.
With the code I have wrote I can get all of the text files in all of the directories.
for ...
1
vote
1answer
64 views
python: os.walk of e drive does not work
Simple code:
import os
filenamelist = []
#path = "E:\blah\blah\blah"
path = "C:\Program Files\Console2"
for files in os.walk(path):
filenamelist.append(files)
print files
The above works. ...
0
votes
2answers
64 views
Combine CSV file data to one CSV file
I have csv files spread around in multiple directories, each of the csv file has only one column containing data. What I want to do is read all these files and bring each file's column into on csv ...
0
votes
1answer
82 views
os.walk to find path to file issue (Python 2.7)
I've just starting using python 2.7 and was using the following code to ascertain the path to a file:
import os, fnmatch
#find the location of sunnyexplorer.exe
def find_files(directory, pattern):
...
0
votes
2answers
46 views
Creating many arrays at once
I am currently working with hundreds of files, all of which I want to read in and view as a numpy array. Right now I am using os.walk to pull all the files from a directory. I have a for loop that ...
0
votes
0answers
47 views
os.walk to recreate file struct for outlook inbox
yet another os.walk question.
I am trying to work with os.walk to recreate a folder structure to reflect a import into a outlook pst, using redemption.
I am having a hard time keeping track mentally ...
0
votes
1answer
81 views
os.walk() results type
I have a folder of several thousand files. I need to match the filename of each file with a column from another array.
import os
filenames = []
for files in os.walk("Directory"):
...
0
votes
2answers
71 views
save os.walk() in variable [duplicate]
Can I somehow save the output of os.walk() in variables ? I tried
basepath, directories, files = os.walk(path)
but it didn't work. I want to proceed the files of the directory and one specific ...
3
votes
4answers
177 views
os.walk() ValueError: need more than 1 value to unpack
Alright, I'm working with a Bioloid Premium humanoid robot, and Mac OS X will not recognize it. So I wrote a Python script to detect changes in my /dev/ folder because any connection on a Linux-based ...
1
vote
3answers
150 views
Moving files and creating directories if certain file type in python
This is probably a simple question, but I'm brand new to python and programming in general.
I'm working on a simple program to copy/move .mp3 files from on location to another while mirroring the ...
0
votes
1answer
80 views
How to fetch a specific file or directory list using os.walk in Python?
I'd like to know if it is possible to retrieve by index number a specific file in a specific subfolder inside an os.walk class.
I'd also like to know how can I list just the subdirs at a specific ...
0
votes
0answers
61 views
Traversing Sub-directory File Information - Can't find EOF
I'm currently trying to traverse a directory with sub directories and get the total file size for each sub directory. For example, consider the following:
RootDir
-SubDir1
--other subdirs
-SubDir2
...
0
votes
2answers
89 views
Upload directories to S3 in Windows with Python
I am trying to upload contents of my local directory on Windows machine to Amazon S3 and I am using following code snippet:
for path, dir, files in os.walk(local_directory):
for file in ...
0
votes
1answer
250 views
os.walk get directory names
I have such file structure:
d:\temp\random1\index.html
d:\temp\random2\index.html
d:\temp\random3\index.html
and I want to get paths to list in python. So the output would be:
files = ['path': ...
0
votes
3answers
113 views
os.walk .jpg only
I only want filenames that end in .jpg or .pdf. How do I limit the file name search?
import os
from subprocess import call
for dirname, dirnames, filenames in os.walk('.'):
for filename in ...
1
vote
2answers
121 views
Python, os.walk(), pass information back up?
I'm currently attempting to write a simple python program that loops through a bunch of subdirectories finding java files and printing some information regarding the number of times certain keywords ...
1
vote
1answer
274 views
Change directory using os.walk in python
I'm trying to write something that recursively searches a path and subdirectories for files that start with the hex value of "FFD8". I have gotten it to work with the location specified in argument ...
1
vote
1answer
153 views
Discrepancies with Python os.walk
I've written a script to crawl directories on my system and record file meta data. I've used os.walk to do this.
It has worked for the most part, but when running on different machines it returns a ...
2
votes
2answers
156 views
Looping through a directory of files in Python
I'm 99% of the way through my first python script, but I'm getting tripped up on the equivalent of a for-each loop through files in a directory. My script is working for single files, I'm just not ...
0
votes
3answers
209 views
os.walk to crawl through folder structure
I have some code that looks at a single folder and pulls out files.
but now the folder structure has changed and i need to trawl throught the folders looking for files that match.
what the old code ...
1
vote
1answer
170 views
Python Recursing Through A Directory
I'm attempting to walk through a directory using os.walk(). My current implementation is as follows:
print(".:")
for dirname, dirnames, filenames in os.walk(path):
for filename in filenames:
...
1
vote
3answers
74 views
RegEx replace character instances based on pattern or seperator
I am just recently learning and utilizing the power of regular expressions
I have a tuple list of files returned from os.walk(), like so:
files = ('s8_00.tif', 's9_00.tif', 's10_000.tif', ...
4
votes
1answer
254 views
Does os.walk leak memory?
When I run this Python script in Windows, the process grows with no apparent end in sight:
import os
for i in xrange(1000000):
for root, dirs, files in os.walk(r"c:\windows"):
pass
Am ...
1
vote
1answer
214 views
python storing path names with forward vs backward slash
I have a procedure that os.walks a directory and its subdirectories to filter pdf files, separating out their names and corresponding pathnames. The issue I am having is that it will scan the topmost ...
0
votes
0answers
34 views
Using Python with windows change location feature
I am trying to do a os.walk on my downloads folder.
It doesn't seem to work with a changed location downloads folder.
I changed the location by right clicking on it and clicking properties. There is a ...
2
votes
3answers
184 views
Over-riding os.walk to return a generator object as the third item
While checking the efficiency of os.walk, I created 6,00,000 files with the string Hello <number> (where number is just a number indicating the number of the file in the directory), e.g. the ...
-2
votes
1answer
379 views
Read file with os.read() or os.readlines() in Python
I have a file handle to a movie file which is in avi format. So now I want to print the contents of the file to the screen - print file_name.read() - but it kind of prints 2 lines and then does not do ...
0
votes
1answer
101 views
Downloading an arbitrary number of files from a URL with urllib2 in Python 2.7. Equivalent of “os.walk” for urllib2?
I'd like to download all of the files in a particular directory at a known URL. The names of the files won't necessarily be known, but their names will all contain a common keyword, and will have the ...
1
vote
1answer
221 views
Os.walk wont work with directory matched with regex
This is the code i used. Why cant os walk handle ?
import os, re
cwd = os.getcwd()
directory= 'Box II'
dirpattern = re.compile(r'^.*?\\'+directory+'.*?', re.M)
for root, dirs, files in ...
0
votes
1answer
145 views
Os.walk wont work with directory acquired through ' match.group(0).encode('string-escape') '
Dear Stackoverflow helpers,
Im a newb and im using os.walk to search for files in specific directories.
this is testcode that wont do what it should:
import os, re
cwd = os.getcwd()
directory= ...
2
votes
3answers
718 views
How to improve searching with os.walk and fnmatch in python 2.7.2
I'm 'os.walk' and 'fnmatch' with filters to search a pc's hdd for all image files. This works perfectly fine but is extremely slow since it takes about 9 minutes to search +-70000 images.
Any ideas ...
1
vote
2answers
863 views
Efficiently removing subdirectories in dirnames from os.walk
On a mac in python 2.7 when walking through directories using os.walk my script goes through 'apps' i.e. appname.app, since those are really just directories of themselves. Well later on in processing ...
6
votes
3answers
503 views
Python Walk, but Tread Lightly
Okay, here's a doosy:
I'd like to recursively walk a directory, but I want python to break from any single listdir if it encounters a directory with greater than 100 files. Basically, I'm searching ...
0
votes
1answer
124 views
os.walk raises “unknown exception” in Eclipse/PyDev when path is a windows mapped network drive
I am trying to write a module that searches for different files on mapped drives in a Windows environment. This works perfectly in PythonWin and Idle but raises an exception "Unknown exception when ...
0
votes
2answers
444 views
Why does this recursive copy function copy all files into every directory above the correct one?
I write a function to copy files from directory A to directory B recursive.
The code is like this:
import os
import shutil
import sys
from os.path import join, exists
def copy_file(src, dest):
...
0
votes
1answer
220 views
Is there a formal method for 'walking' XML in Python?
I have been learning how to extract parts of XML using the dom.minidom function, and I can return specific elements and attributes successfully.
I have a number of large XML files I want to parse, ...
1
vote
1answer
239 views
Seeking elegant design of data representation for a directory tree
I'm seeking advice on elegant designs for representing a file directory without symlinks in Python where I can query the relationships in terms of "belongs to" (e.g. G is a subdirectory of /A/B/C). My ...
0
votes
1answer
560 views
Strange behavior of os.walk() in Python?
This is the original block of code and its result:
Code:
if os.path.isdir(top):
for root, dirs, files in os.walk(top, topdown = True):
for dirname in dirs:
print 'Dirname = ...
0
votes
1answer
299 views
Unified directory tree walking for local files, ftp, http in python
In my testkernel program I'd like to walk directory trees via a variety of protocols. What I think I want is something like os.walk, but which works for ftp, and for typical http directory listings ...
1
vote
1answer
331 views
Writing a directory tree in a xml file with python lxml
I am trying to read a directory tree to write it in an xml file without too much sucess:
# -*- coding: utf-8 -*-
"""
Created on Tue Jan 31 13:30:22 2012
@author: Jean-Patrick Pommier
"""
import ...
2
votes
3answers
2k views
Quicker to os.walk or glob?
I'm messing around with file lookups in python on a large hard disk. I've been looking at os.walk and glob. I usually use os.walk as I find it much neater and seems to be quicker (for usual size ...
2
votes
2answers
2k views
How to read the file contents from a file?
Using Python3, hope to os.walk a directory of files, read them into a binary object (string?) and do some further processing on them. First step, though: How to read the file(s) results of os.walk?
# ...
2
votes
1answer
108 views
Readline feature in Directory Lister class
The below class is a dynamic attribute generating directory walker by Anurag.
import os
class DirLister(object):
def __init__(self, root):
self.root = root
self._list = None
...
1
vote
1answer
207 views
Backup dirs and subdirs using Python; Use os.walk or filecmp.dircmp, or something else
I am a python newbie.
My question is what approach I should use to set up a file/directory backup routine, as described below (os.walk or filecmp.dircmp, or something else).
I want to set up a ...
0
votes
1answer
280 views
Python Batch convert of flac files
I want to convert all flac files to ogg in the working directory:
This is what i ALREADY have.
for root, dirs, files in os.walk(args):
flacs = [f for f in files if f.endswith('.flac')]
...
-2
votes
1answer
123 views
how to get an exact directory through os.walk in python
I have a directory that contains directories like /sample1, /sample10, /sample11 etc.
when I am using os.walk to access all of them one by one, I am facing some difficulties.
for root, dirs, files in ...
