RoadRunner

RoadRunner Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 392
  • Released: Jun 6, 2007

RoadRunner Description

This recipe allows you to update desired files in a directory tree. It needs to be run from the shell. Once you run it, it will ask you for: a) the "string" you want to insert in the file b) the extension of the files to update e.g: .html c) a regular expresion ( where you want the string to be inserted ) and d) the path of the directory where you want this update to occur.

RoadRunner Bookmark

Hyperlink code:
Hyperlink for Forum code:

RoadRunner Script Download Notice

Top 4 Download periodically updates information of RoadRunner script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. RoadRunner torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Tree

The following program displays the directory structure of a specified path using ASCII characters. The program can optionally display files in addition to directories.This program functions similar to the windows 'tree' command. ...
Python

Clean up a directory tree

This script can be used to clean up a directory tree irrespective of whether the directory tree contains non-empty directories. As long as the user ... work.There is no files, thor cleaning a non-empty directory tree in python os module. os.removedirs() cannot be used ...
Python

Watching a directory tree on Unix

... value for rescanning; if it returns True, the directory tree will be rescanned without calling func() for any ... is so func() can write changes into the tree and prevent itself from being immediately called again.) & prevent t; ...
Python

Rename subdirectories of a directory tree

... a sed/awk Python equivalent for walking into a directory tree and renaming certain subdirectories, while also looking into all xml files on the way and replacing/modifying certain strings in those files.It would be nicer if someone could suggest an enhanced re.sub(regex, replacement, subject) where I could replace all strings of ...
Python

Flexible directory walking

This function walks a directory tree starting at a specified root folder, and returns ... folders) that match our pattern(s).The standard match our tree function os.path.walk can be confusing, and is difficult to customize. It can also be slow. Here's an alternative that allows you to choose the root folder, whether ...
Python