J'ai créé un script python qui automatise le processus de création/suppression de ces fichiers.
Voici la source du script : http://pastebin.com/inbYmMut
#!/usr/bin/python
# Copyright (c) 2011 Ernesto Mendez (der-design.com)
# Double licence sous les licences MIT et GPL :
# http://www.opensource.org/licenses/mit-license.php
# http://www.gnu.org/licenses/gpl.html
# Version 1.0.0
# - Première version
from __future__ import generators
import sys
from optparse import OptionParser
import os
def main():
# Traiter les arguments
if len(args) > 1:
parser.error('Trop d\'arguments')
sys.exit()
elif len(args) == 0:
parser.error('Nom de fichier manquant')
sys.exit()
if not os.path.exists(options.directory):
parser.error("%s : Aucun répertoire de ce nom" % options.directory)
sys.exit()
filename = args[0]
# Créer un générateur
filetree = dirwalk(os.path.abspath(options.directory))
# Parcourir l'arborescence des répertoires, créer des fichiers
if options.remove == True:
removed = ['Suppression des fichiers suivants : \n']
cmd = "rm"
for file in filetree:
if (os.path.basename(file) == filename):
removed.append(file)
cmd += " %s" % fixpath(file)
if cmd != "rm":
for f in removed: print f
os.system(cmd)
else:
print "Aucun fichier nommé '%s' trouvé" % filename
sys.exit()
# Parcourir l'arborescence des répertoires, supprimer les fichiers
else:
created = ["Création des fichiers suivants : \n"]
cmd = "touch"
for file in filetree:
if (os.path.isdir(file)):
created.append("%s%s" % (file, filename))
cmd += " " + fixpath("%s%s" % (file, filename))
if cmd != "touch":
for f in created: print f
os.system(cmd)
else:
print "Aucun répertoire vide trouvé"
sys.exit()
def dirwalk(dir, giveDirs=1):
# http://code.activestate.com/recipes/105873-walk-a-directory-tree-using-a-generator/
for f in os.listdir(dir):
fullpath = os.path.join(dir, f)
if os.path.isdir(fullpath) and not os.path.islink(fullpath):
if not len(os.listdir(fullpath)):
yield fullpath + os.sep
else:
for x in dirwalk(fullpath): # recursion dans le sous-répertoire
if os.path.isdir(x):
if giveDirs:
yield x
else:
yield x
else:
yield fullpath
def wrap(text, width):
return reduce(lambda line, word, width=width: '%s%s%s' % (line, ' \n'[(len(line)-line.rfind('\n')-1 + len(word.split('\n', 1)[0] ) >= width)], word), text.split(' ') )
def fixpath(p):
return shellquote(os.path.normpath(p))
def shellquote(s):
return "'" + s.replace("'", "'\\''") + "'"
def init_options():
global parser, options, args
parser = OptionParser(usage="usage: %prog [options] filename", description="Ajouter ou supprimer des fichiers de placeholder pour les outils SCM (Source Control Management) qui ne prennent pas en charge les répertoires vides.")
parser.add_option("-p", "--path", dest="directory", help="rechercher dans PATH", metavar="PATH")
parser.add_option("-r", "--remove", dest="remove", action="store_true", help="supprimer le FICHIER de PATH, s'il est le seul fichier sur PATH")
(options, args) = parser.parse_args()
if __name__ == '__main__':
print
init_options()
main()
print