1
vote
3answers
216 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 o …
1
vote
2answers
87 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($SearchFolde …
0
votes
4answers
332 views
How do i get a directory size (files in the directory) in c#?
Hi,
I want to be able to get the size of one of the local directories using c#. I'm trying to avoid the following (pseudo like code), although in the worst case scenario I will ha …
2
votes
3answers
256 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 enc …
4
votes
9answers
677 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 dir …
