I'm trying to write a simple python script that will copy a index.tpl to index.html in all of the subdirectories (with a few exceptions). But I'm getting bogged down by trying to get the list of subdirectories
|
|
|||||
|
|
|
|
||||||
|
|
|
os.walk is your friend in this situation. Straight from the doc
|
||
|
|
|
|
Using Twisted's FilePath module:
Since some commenters have asked what the advantages of using Twisted's libraries for this is, I'll go a bit beyond the original question here. There's some improved documentation in a branch that explains the advantages of FilePath; you might want to read that. More specifically in this example: unlike the standard library version, this function can be implemented with no imports. The "subdirs" function is totally generic, in that it operates on nothing but its argument. In order to copy and move the files using the standard library, you need to depend on the "
The "subdirs" function above can work on any You can also pass your own objects for testing purposes. In order to test the os.path-using APIs suggested here, you have to monkey with imported names and implicit dependencies and generally perform black magic to get your tests to work. With FilePath, you do something like this:
|
||||||||||||
|
|
|
I just wrote some code to move vmware virtual machines around, and ended up using os.path and shutil to accomplish file copying between sub-directories.
It's not terribly elegant, but it does work. |
||
|
|
|
|
Here's one way:
|
||||
|
