Tagged Questions
3
votes
1answer
313 views
How to make a chronological list of files, with the file modification date
I want to create a list of those files in a directory which have the extension .bas, and which were modified after June 1, 2011. Also, I'd like to know how to optionally have the files in the list ...
3
votes
6answers
364 views
What is the fastest / easiest way to count large number of files in a directory (in Linux)?
I had some directory, with large number of files. Every time I tried to access the list of files within it, I was not able to do that or there was significant delay. I was trying to use ls command ...
3
votes
4answers
1k views
Directory Walker for Python
I am currently using the directory walker from Here
import os
class DirectoryWalker:
# a forward iterator that traverses a directory tree
def __init__(self, directory):
self.stack = [directory]
...
1
vote
3answers
97 views
Faster way to get a directory listing than invoking “ls” in a subprocess
After a search, and some test runs both os.popen()+read() and subprocess.check_output() seem to be almost equivalent for reading out the contents of a folder. Is there a way to improve either a ...
0
votes
2answers
43 views
Can I create a “simple” Cyclic Redundancy Check program in Python?
I am quite green in the ways of Python programming and was tasked with creating a simple program that ran a CRC check. Can anyone suggest a good start point on which modules to use/read up on? I ...
0
votes
6answers
54 views
Selecting a file from a stated directory in Python
I want to select a file by numbers at left side of listing but I can't go more than this:
import os
path="/root/Desktop"
dirList=os.listdir(path)
for fname in dirList:
print fname
selected = ...