The directory-walk tag has no wiki summary.
0
votes
2answers
27 views
Directory walk call method when directory is reached
Trying to write a script that will search through a directory and sub-directories for specific files. I would like to do know how a certain directory or directories come up to call a method.
this is ...
0
votes
0answers
90 views
NoClassDefFoundError when loading classes with ClassLoader recursively
I'm using a FileWalker to being walking from a specified folder and find all the .class files in the folder and any subsequent sub folders so I can load them using a ClassLoader then use reflection to ...
0
votes
0answers
42 views
Commons IO DirectoryWalker - How to make it return relative path?
In handleFile, DirectoryWalker returns an absolute path.
Is there any way to make it return a path relative to dirToScan?
new DirectoryWalker( null, new SuffixFileFilter(".texy"), -1){
...
6
votes
8answers
231 views
unable to skip unreadable directories with RecursiveDirectoryIterator
I want to get a list of all the subdirectories and my below code works except when I have readonly permissions on certain folders.
In the below question it shows how to skip a directory with ...
1
vote
3answers
57 views
Anybody know of an open-source C implementation of the Java walkFileTree FileVisitor interface for walking a directory / file tree structure?
Does anybody know of a C implementation of the java.nio.file.Files.walkFileTree FileVisitor interface for walking a directory / file tree structure?
I have some existing Java code that uses the ...
5
votes
3answers
2k views
Hadoop MapReduce provide nested directories as job input
I'm working on a job that processes a nested directory structure, containing files on multiple levels:
one/
├── three/
│ └── four/
│ ├── baz.txt
│ ├── bleh.txt
│ └── foo.txt
└── ...
3
votes
3answers
255 views
Recursively walk a LARGE directory using Scala 2.8 continuations
Is it possible to recursively walk a directory using Scala continuations (introduced in 2.8)?
My directory contains millions of files, so I cannot use a Stream because I will get an out-of-memory. I ...
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 ...
8
votes
5answers
3k views
What is the Python way to walk a directory tree?
I feel that assigning files, and folders and doing the += [item] part is a bit hackish. Any suggestions? I'm using Python 3.2
from os import *
from os.path import *
def dir_contents(path):
...
11
votes
3answers
975 views
Can I make RecursiveDirectoryIterator skip unreadable directories?
foreach(new RecursiveIteratorIterator(new RecursiveDirectoryIterator(".")) as $file) {
echo "$file\n";
}
Is there any way for this code to not throw UnexpectedValueException "failed to open dir: ...
5
votes
5answers
2k views
How to walk a directory in C
I am using glib in my application, and I see there are convenience wrappers in glib for C's remove, unlink and rmdir. But these only work on a single file or directory at a time.
As far as I can see, ...
1
vote
2answers
2k views
How to walk a directory over a local network using PHP?
How can i list the contents of a windows share using PHP?
$SearchFolder = "\\\\192.168.1.100\\pdfoutput\\";
if (is_dir($SearchFolder))
{
if ($Directory = opendir($SearchFolder))
{
while ...
7
votes
4answers
2k views
A Python walker that can ignore directories
I need a file system walker that I could instruct to ignore traversing
directories that I want to leave untouched, including all subdirectories
below that branch.
The os.walk and os.path.walk just ...
3
votes
3answers
1k views
URL tree walker in Python?
For URLs that show file trees, such as Pypi packages,
is there a small solid module to walk the URL tree and list it like ls -lR?
I gather (correct me) that there's no standard encoding of file ...
9
votes
10answers
5k views
Is there a workaround for Java's poor performance on walking huge directories?
I am trying to process files one at a time that are stored over a network. Reading the files is fast due to buffering is not the issue. The problem I have is just listing the directories in a ...

