Tagged Questions
The os.walk tag has no wiki summary.
14
votes
4answers
202 views
Python equivalent of find2perl
Perl has a lovely little utility called find2perl that will translate (quite faithfully) a command line for the Unix find utility into a Perl script to do the same.
If you have a find command like ...
7
votes
5answers
8k views
os.walk without digging into directories below
How do i limit os.walk to only return files in the directory i provide it?
def _dir_list(self, dir_name, whitelist):
outputList = []
for root, dirs, files in os.walk(dir_name):
for f ...
5
votes
10answers
695 views
How to get progress of os.walk in python?
I have a piece of code which I'm using to search for the executables of game files and returning the directories. I would really like to get some sort of progress indicator as to how far along ...
4
votes
3answers
2k views
os.walk() python: xml representation of a directory structure, recursion
So I am trying to use os.walk() to generate an XML representation of a directory structure. I seem to be getting a ton of duplicates. It properly places directories within each other and files in the ...
3
votes
2answers
272 views
multicpu bzip2 using a python script
I want to quickly bzip2 compress several hundred gigabytes of data
using my 8 core , 16 GB ram workstation.
Currently I am using a simple python script to compress a whole
directory tree using bzip2 ...
2
votes
1answer
68 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
...
2
votes
2answers
84 views
Mental block with os.walk - want to process a file not the filename string
Trying to implement a little script to move the older log files out of apache (actually using a simple bash script to do this in 'real life' - this is just an exercise to practice using Python). I'm ...
2
votes
1answer
180 views
can i force python3's os.walk to visit directories in alphabetical order? how?
i would like to know if it's possible to force os.walk in python3 to visit directories in alphabetical order. for example here is a directory and some code that will walk this directory:
...
2
votes
1answer
414 views
python listing dirs in a different order based upon platform
I am writing and testing code on XPsp3 w/ python 2.7. I am running the code on 2003 server w/ python 2.7. My dir structure will look something like this
d:\ssptemp
d:\ssptemp\ssp9-1
...
1
vote
3answers
65 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 ...
1
vote
1answer
53 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 ...
1
vote
4answers
141 views
os.walk multiple directories at once [closed]
Possible Duplicate:
How to join two generators in Python?
Is there a way in python to use os.walk to traverse multiple directories at once?
my_paths = []
path1 = '/path/to/directory/one/'
...
1
vote
2answers
68 views
how to implement glob.glob
currently my os.walk code list's all the files in all directories under the specified directory.
top = /home/bludiescript/tv-shows
for dirpath, dirnames, filenames in os.walk(top):
...
1
vote
3answers
80 views
Can't find file with os.walk()
I've created a file called program1.py in my /home/n00b directory.
I then opened python and I wanted to see if I could write a script to find it's location. I did this:
for f in ...
1
vote
1answer
112 views
What's the Django way to render a tree of folders and files?
Still a newbie...
In my view I have used os.walk to list user files available:
for (path, dirs, files) in os.walk(docroot, topdown=True):
#...do something here
Now I want to render these ...
1
vote
1answer
129 views
UnicodeWarning when comparing unicode strings to unicode results from os.walk command
Using python 2.7 I'm doing an os.walk with these files http://www.2shared.com/file/biSx7NI-/comer.html and then comparing the result against an array. In the actual program this array won't be ...
1
vote
4answers
2k views
Filtering os.walk() dirs and files
I'm looking for a way to include/exclude files patterns and exclude directories from a os.walk() call.
Here's what I'm doing by now:
import fnmatch
import os
includes = ['*.doc', '*.odt']
excludes ...
1
vote
1answer
181 views
python processs complete list files matched
I'm trying to get simple code working, unfortunately I'm a python beginner.
My script should return a list of files that doesn't match a pattern, more information here :
...
1
vote
3answers
146 views
os.walk in python not running with cmd line parameter passed as path
I needed to find the number of files in a folder on the system.
This is what i used:
file_count = sum((len(f) for _, _, f in os.walk('path')))
This works fine when we specify the path as a string ...
0
votes
2answers
73 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?
# ...
0
votes
1answer
82 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')]
...
0
votes
1answer
48 views
in python how do I figure out the current path of the os.walk()?
So I let a user to set a path to a directory that may contain subdirectories (more levels), and files.
I use os.walk() in my code to scan the whole directory:
for root, subdirs, files in ...
0
votes
1answer
115 views
fnmatch how exactly do you implement the match any chars in seq pattern
so i have a os.walk code
search = self.search.get_text()
top = '/home/bludiescript/tv-shows'
for dirpath, dirnames, filenames in os.walk(top):
for filename in filenames:
if ...
0
votes
2answers
141 views
Django unzip a file, add contents to database
I am trying to create a system that enables the admin to upload a zipfile, then the script will automatically, using signals, unzip it, search for all the files in jpg,png. create a list of them and ...
0
votes
0answers
46 views
Converting groups of pdf files to muliple multi-page pdf or delete similar name smaller file — using Python 2.65
I need to create multiple multi-page pdf files by combining all the files with the same initial file name string. I was able to do this but the process is also creating some duplicate files with only ...
0
votes
2answers
140 views
How to skip .hg / .get / .svn directories while recursing tree in python
I have a python script which I have been piecing together (one of my first python forays).
The script recurses a folder looking for XCode project files; the script works fine, but I would like to ...
0
votes
1answer
63 views
Obtaining a unique top-down list of folders in python
Given these folders
s:\test\zoneA\UnitA
s:\test\zoneB\UnitA
s:\test\zoneB\UnitB\Item_1
I would like to pass to a function 's:\test' and get unique bottom list of folders
Resulting in what you see ...
0
votes
1answer
528 views
Faster alternative/usage of os.walk to only find all subdirs in Python
From what I've read around the interwebs and here on SO, os.walk is one of the best bets for finding all subdirs and files in a directory, but the question I have is, if I only want to recursively ...
0
votes
2answers
336 views
os.walk with regex
I'd like to get a list of files that apply to a regex that i have. I guess i should use os.walk, but how can i use it with regex?
Thanks.
0
votes
2answers
97 views
Why isn't os.walk recognising my variable name?
I've written the following in TextWrangler:
directory = raw_input("See contents of: ")
for root, dirs, files in os.walk(directory):
print root, dirs, files
Unfortunately, when I run it in ...
0
votes
1answer
479 views
Non-recursive os.walk()
I'm looking for a way to do a non-recursive os.walk() walk, just like os.listdir() works. But I need to return in the same way the os.walk() returns. Any idea?
Thank you in advance.
0
votes
1answer
946 views
I get OSError: [Errno 13] Permission denied: <dir name>, and os.walk exits
I have a script to report me about all files, in a directory, so that users will be required to erase them (it's a really badly managed cluster, w/o real superuser).
When I run the script I get:
...
0
votes
3answers
653 views
Python directory searching and organizing by dict
Hey all, this is my first time recently trying to get into the file and os part of Python. I am trying to search a directory then find all sub directories. If the directory has no folders, add all the ...
-1
votes
1answer
42 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 ...