X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=chemins.py;h=b88093561b1693fcae183977979daa1bc93ffe6f;hp=f43969cc956ac828ecafe922ce79db68a0e00dda;hb=5064efb501867baf6736aad84a3bb0571669a41a;hpb=c440e446cdf3ff08f6bcd37c5061da3c5f29dc37 diff --git a/chemins.py b/chemins.py index f43969c..b880935 100644 --- a/chemins.py +++ b/chemins.py @@ -20,7 +20,7 @@ def normpath_win32(path) : if sys.platform == 'win32' and path.startswith('\\') and not path.startswith('\\\\') : path = '\\' + path return path - + class PathOut : def __init__(self, filename = None, analyse_type = '', dirout = None) : if filename is not None : @@ -30,11 +30,11 @@ class PathOut : self.filename, self.fileext = os.path.splitext(self.filebasename) self.analyse = analyse_type #self.dirout = self.mkdirout(dirout) - if dirout is not None: + if dirout is not None: self.dirout = os.path.abspath(dirout) elif filename is not None and dirout is None: self.dirout = os.path.abspath(self.directory) - self.d = {} + self.d = {} def mkdirout(self) : dirout = os.path.join(self.dirout, self.filename + '_' + self.analyse + '_') @@ -46,6 +46,14 @@ class PathOut : 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) : os.mkdir(tdirout)