Tagged Questions
1
vote
1answer
146 views
Python: Reading all files in all directories
I have the code working to read in the values of a single text file but am having difficulties reading all files from all directories and putting all of the contents together.
Here is what I have:
...
1
vote
1answer
23 views
Is there existing any utilities to get all absolute path of leaf file under a given directory?
os.listdir(path) can return all the files under the directory of the given path. I an wonder if there exists any utility function that can conduct deep traverse and return all the paths of leaf files ...
-1
votes
2answers
134 views
Compare directories on file/folder names only, printing any differences?
How do I recursively compare two directories (comparison should be based only on file name) and print out files/folders only in one or the other directory?
I'm using Python 3.3.
I've seen the ...
0
votes
0answers
60 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
1answer
37 views
Recurse through directories and log files by file type in python
I want to investigate a set of directories and get the following info
No of files by filetype
List of files by filetype with full path
1&2 per subdirectory directory
I have the following code. ...
-5
votes
1answer
67 views
I need to create a program in applescript or python that uses a recursive algorithm to back up a directory into a set of zip files [closed]
I have never used applescript or python before and have very minimal programming experience. I need to create a program that goes through a directory and zips all of the files in it while keeping the ...
0
votes
1answer
72 views
How can I check if a directory is a temporary directory in Python
I know how to create a temporary directory in Python using tempfile.
I have though a class that encapsulates the user environment. I have also a Unit test which creates a temporary dummy user ...
0
votes
1answer
65 views
Place sensitive files outside the root (multiple programming languages)
I'm going to use multiple programming languages (Python, Ruby, PHP) in highload project and I'm interested if it worth to place sensitive files such as database configuration files or server ...
0
votes
3answers
53 views
Making every module in a package accessible from within?
How is a Python package supposed to be structured to make everything possible for any module inside of it?
My file structure is as follows:
Project/
|---log/
| |---some logs
|
...
0
votes
1answer
77 views
How to make a python Package?
Here is my structure,
main.py
folder1\
button.py
folder2\
picturebutton.py
folder3\
listbox.py
folder4\
customlistbox.py
folder5\
...
0
votes
0answers
75 views
Tix DirList or DirTree listing files AND directories
Is there any way to use the Tix "DirList" or "DirTree" and allow file listing as well, instead of just sub directories? Also, is there any way to define what directory it automatically opens to, ...
2
votes
3answers
139 views
How can I efficiently select 100 random JPG files from a directory (including subdirs) in Python?
I have a very large directory of files and folders. Currently, I scan the entire directory for JPGs and store them in a list. This is really slow due to the size of the directory. Is there a faster, ...
-1
votes
1answer
46 views
Ignore warnings in entire subfolder
I have resource files connected with some source in a sub directory, like this:
__init__.py
one.py
subdir/
__init__.py
two.py
dir_two_resources_but_causes_lots_of_warnings/
How can I ...
1
vote
1answer
201 views
Getting sub directories and files using python
What would be the best method of getting sub directories of a drive including files located within them? Would it be best to use os.listdir() and filter out directories from files by checking if they ...
2
votes
2answers
462 views
Recursively creating hardlinks using python
What I basically would like to do is cp -Rl dir1 dir2. But as I understand it, python only provides shutils.copytree(src,dst) which actually copies the files, but has no possibility of hardlinking the ...
2
votes
1answer
137 views
Better to lump everything together under m/v/c folders or seperate module folders with m,v,c files?
In this wiki (https://github.com/mitsuhiko/flask/wiki/Large-app-how-to), the creator of flask (or whomever wrote the wiki) recommends the directory structure of seperate module folders with model, ...
2
votes
1answer
143 views
Managing the paths of a directory tree in python
I have a python script that keeps track of several directory names as individual variables. Some of these directories may exist, while others may need to be created at execution time.
For example, if ...
4
votes
2answers
471 views
Python TDD directory structure
Is there a particular directory structure used for TDD in Python?
Tutorials talk about the content of the tests, but not where to place them
From poking around Python Koans, suspect its something ...
4
votes
2answers
2k views
List directory tree structure using Python
I know that we can use os.walk() to list all sub-directories or all files in a directory. However, I would like to list the full directory tree content:
Subdirectory 1:
file11
file12
...
1
vote
2answers
176 views
Django : Which approach is better [ virtualenv + pip ] vs [manually carrying packages in svn]?
I have a django project that uses a lot of 3rd party apps, so wanted to decide out of the two approaches to manage my situation :
I can use [ virtualenv + pip ] along with pip freeze as requirements ...
2
votes
3answers
367 views
Python - how do delete content in a complicated folder without changing its structure?
I have a folder with sub-folders, each can contain more sub-folders and so on. I want to delete all the files in all of them, but keeping the directory structure the same. Is there a built-in command ...
0
votes
1answer
96 views
Python: How do I call a script in a parent directory's subdirectory?
I'm trying to open a Python script from the Python command line. There's a bug in Python that makes adding Python to my environmental variable's path ineffective. So, I have to run Python command ...
2
votes
1answer
885 views
Recursively list FTP directories in Python
I'm having difficulty retrieving a list of directories on a remote FTP site. This answer does not work (I get no output, it appears to hang).
Here's the simplest implementation I can think of - it ...
2
votes
2answers
161 views
Working with directories - Python
I have the following piece of python code. The code is supposed to get a source, a temporary and an final output path from the user and extract some header files. When the full paths are specified ...
2
votes
3answers
461 views
Scripts in python package
I develop python application which i decided to turn into package to be installed by easy_install or pip later. I've used search to find several good sources about directory structure for python ...
0
votes
2answers
623 views
Recursive directory list/analyze function doesn't seem to recurse right
I wrote what I thought was a straightforward Python script to traverse a given directory and tabulate all the file suffixes it finds. The output looks like this:
OTUS-ASIO:face fish$ sufs
...
6
votes
4answers
291 views
source code trees: wide or deep
After writing a few python appengine apps I find myself torn between two approaches to organizing my source code tree: wide or deep.
For concreteness, consider an internal application for a small ...
4
votes
1answer
2k views
using wild card when listing directories in python
how can I use wild cars like '*' when getting a list of files inside a directory in Python? for example, I want something like:
os.listdir('foo/*bar*/*.txt')
which would return a list of all the ...
5
votes
5answers
3k views
Elegant way to take basename of directory in Python?
I have several scripts that take as input a directory name, and my program creates files in those directories. Sometimes I want to take the basename of a directory given to the program and use it to ...
0
votes
2answers
1k views
Python directory list returned to Django template
Total Python newb here. I have a images directory and I need to return the names and urls of those files to a django template that I can loop through for links. I know it will be the server path, ...
2
votes
2answers
759 views
Python imports with different directory structures
I'm working on a project where all the code in the source tree is separated into module directories, e.g.:
modules/check/lib/check.py
modules/edit/lib/edit.py
During installation, the Python files ...
4
votes
3answers
4k 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
3answers
368 views
Sharing utilities modules across python projects
What would be the best directory structure strategy to share a utilities module across my python projects? As the common modules would be updated with new functions I would not want to put them in the ...
4
votes
1answer
603 views
How to arrange the source code of an application made with SQLAlchemy and a graphic interface?
I'm developing an application using SQLAlchemy and wxPython that I'm trying to keep distributed in separated modules consisting of Business logic, ORM and GUI.
I'm not completely sure how to do this ...
139
votes
6answers
33k views
What is the best project structure for a Python application?
Imagine that you want to develop a non-trivial end-user desktop (not web) application in Python. What is the best way to structure the project's folder hierarchy?
Desirable features are ease of ...