X-Git-Url: http://iramuteq.org/git?a=blobdiff_plain;ds=sidebyside;f=chemins.py;h=4e50a484fe604d51c3a1a033b72249c3231c75a8;hb=421d727de5be048774ffdefcb3401d56be34e94b;hp=f43969cc956ac828ecafe922ce79db68a0e00dda;hpb=e1096f8c3931cb999117c3a7eab4cee9f9224a1b;p=iramuteq diff --git a/chemins.py b/chemins.py index f43969c..4e50a48 100644 --- a/chemins.py +++ b/chemins.py @@ -45,6 +45,14 @@ class PathOut : tdirout = dirout + `nb` self.name = os.path.splitext(tdirout)[1] return tdirout + + def makenew(self, filename, ext): + nb = 1 + newfile = '_'.join([os.path.join(self.dirout, filename), '%i' % nb]) + '.' + ext + while os.path.exists(newfile) : + nb += 1 + newfile = '_'.join([os.path.join(self.dirout, filename), '%i' % nb]) + '.' + ext + return newfile def createdir(self, tdirout) : if not os.path.exists(tdirout) :