Klassenbiliothek fuer Dateiverwaltung
ulrich
19 hours ago 8bde6f998b7112a15624e24e2ee070ebf24a9172
commit | author | age
e369b9 1 /*
c45b52 2   fm - File management class library
e369b9 3   Copyright (C) 2024  Ulrich Hilger
U 4
5   This program is free software: you can redistribute it and/or modify
6   it under the terms of the GNU Affero General Public License as
7   published by the Free Software Foundation, either version 3 of the
8   License, or (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU Affero General Public License for more details.
14
15   You should have received a copy of the GNU Affero General Public License
16   along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18 package de.uhilger.fm;
19
20 import java.io.File;
21 import java.io.IOException;
22 import java.nio.file.DirectoryStream;
23 import java.nio.file.Files;
24 import java.nio.file.Path;
25
26 /**
27  * Eine Klasse mit Methoden zum Umbenennen von Dateien
28  * 
29  * @author Ulrich Hilger, 15. Januar 2024
30  */
31 public class Renamer {
32   
33   public static final String STR_DOT = ".";
34   
8bde6f 35   public String rename(/*HttpExchange exchange, */String relPfad, String neuerName, File file) 
973951 36           throws IOException {
e369b9 37     File neueDatei;
U 38     String fname = file.getName().toLowerCase();
973951 39     if(fname.endsWith(ImageFileFilter.JPEG) || fname.endsWith(ImageFileFilter.JPG) || 
U 40             fname.endsWith(ImageFileFilter.PNG)) {
e369b9 41       neueDatei = renameImgFiles(file.getParentFile(), file, neuerName);  
U 42     } else {
43       neueDatei = new File(file.getParentFile(), neuerName);
44       file.renameTo(neueDatei);
45     }
46     return neueDatei.getName();
47   }
48   
49   public File renameImgFiles(File targetDir, File targetFile, String newName) throws IOException {
50     String alt;
51     String neu;
52     File neueDatei = targetFile;
53     
54     int newdotpos = newName.lastIndexOf(STR_DOT);
55     String newfname = newName.substring(0, newdotpos);
56     String newext = newName.substring(newdotpos);
57     //logger.fine("newfname: " + newfname + ", newext: " + newext);
58     
59     String fnameext = targetFile.getName();
60     int dotpos = fnameext.lastIndexOf(STR_DOT);
61     String fname = fnameext.substring(0, dotpos);
62     String ext = fnameext.substring(dotpos);
63     //logger.fine("fname: " + fname + ", ext: " + ext);
64     
973951 65     DirectoryStream<Path> stream = Files.newDirectoryStream(targetDir.toPath(), fname + "*" + ext); 
e369b9 66     for (Path path : stream) {
U 67       //logger.fine(path.getFileName().toString());
68       alt = path.getFileName().toString();
69       //logger.fine("alt: " + alt);
973951 70       if(alt.contains(ImageFileFilter.TN)) {
U 71         neu = newfname + ImageFileFilter.TN + newext;
72       } else if (alt.contains(ImageFileFilter.KL)) {
73         neu = newfname + ImageFileFilter.KL + newext;
74       } else if(alt.contains(ImageFileFilter.GR)) {
75         neu = newfname + ImageFileFilter.GR + newext;
76       } else if(alt.contains(ImageFileFilter.MT)) {
77         neu = newfname + ImageFileFilter.MT + newext;
78       } else if(alt.contains(ImageFileFilter.SM)) {
79         neu = newfname + ImageFileFilter.SM + newext;
e369b9 80       } else {
U 81         neu = newName;
82       }
83       neueDatei = new File(targetDir, neu);
84       path.toFile().renameTo(neueDatei);              
85     }
86     stream.close();
87     return neueDatei;
88   }
89   
90   
91   
92 }