Klassenbiliothek fuer Dateiverwaltung
ulrich
19 hours ago 7e5166a55fa459deab5579f764b7bb34719e5ec9
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 /**
973951 27  * Die Klasse Mover verschiebt und kopiert Dateien und Ordner
U 28  * 
29  * Handhabung von Bilddateien: 
30  * 
31  * Fuer jede Datei mit Endung jpg, jpeg und png werden alle Varianten wie zum Beispiel 
32  * dateiname.jpg, dateiname_kl.jpg, dateiname_gr.jpg, dateiname_gr_b64.jpg usw. 
33  * beruecksichtigt.
e369b9 34  *
U 35  * @author Ulrich Hilger, 15. Janaur 2024
36  */
37 public class Mover extends FileHelper {
38
973951 39   public static final int OP_COPY = 1;
U 40   public static final int OP_MOVE = 2;
41   
42   /**
43    * Dateien und Ordner verschieben oder kopieren
44    * 
45    * @param fromPath der Pfad zur Quelle  der Verschiebe- oder Kopieraktion
46    * @param toPath der Pfad zum Ziel der Verschiebe- oder Kopieraktion
47    * @param fileNames die Liste der Dateien und Ordner, die verschoben oder kopiert werden sollen
48    * @param operation die gewuenschte Dateioperation, OP_COPY oder OP_MOVE
49    * @param base der Basispfad, gegen den fromPath und toPath aufgeloest werden sollen
50    * @throws IOException wenn etwas schief geht
51    */
52   public void copyOrMoveFiles(String fromPath, String toPath, String[] fileNames, 
e369b9 53           int operation, String base) throws IOException {
973951 54     //String result = null;
e369b9 55     File srcDir = new File(base, fromPath);
U 56     File targetDir = new File(base, toPath);
57     for (String fileName : fileNames) {
58       File srcFile = new File(srcDir, fileName);
59       //logger.fine("srcFile: " + srcFile);
60       if (srcFile.isDirectory()) {
61         //logger.fine("srcFile is directory.");
a11f6c 62         FileOpsVisitor bearbeiter = new FileOpsVisitor();
e369b9 63         bearbeiter.setTargetDir(targetDir.toPath());
U 64         bearbeiter.setOperation(operation);
65         Files.walkFileTree(srcFile.toPath(), bearbeiter);
66       } else {
67         Path source = srcFile.toPath();
68         File destFile = targetDir.toPath().resolve(source.getFileName()).toFile();
69         if (destFile.exists()) {
70           destFile = getNewFileName(destFile);
71         }
973951 72         if (operation == OP_MOVE) {
e369b9 73           String fname = srcFile.getName().toLowerCase();
973951 74           if (fname.endsWith(ImageFileFilter.JPEG)
U 75                   || fname.endsWith(ImageFileFilter.JPG)
76                   || fname.endsWith(ImageFileFilter.PNG)) {
77             moveImgFilesToDirectory(srcFile, srcDir, targetDir/*, false*/);
e369b9 78           } else {
U 79             Files.move(source, destFile.toPath());
80           }
81         } else {
82           Files.copy(source, destFile.toPath());
83         }
84       }
85     }
973951 86     //return result;
e369b9 87   }
U 88
973951 89   /**
U 90    * Eine Bilddatei mit allen Varianten verschieben oder kopieren
91    * 
92    * Fuer jede Datei mit Endung jpg, jpeg und png werden alle Varianten wie zum Beispiel 
93    * dateiname.jpg, dateiname_kl.jpg, dateiname_gr.jpg, dateiname_gr_b64.jpg usw. 
94    * beruecksichtigt, also dateiname*.jpg.
95    * 
96    * @param srcFile die Bilddatei, deren Varianten beruecksichtigt werden sollen
97    * @param srcDir der Herkunftsort
98    * @param targetDir der Zielort
99    * @throws IOException wenn etwas schief geht
100    */
101   private void moveImgFilesToDirectory(File srcFile, File srcDir, File targetDir/*, 
102           boolean createDestDir*/) throws IOException {
e369b9 103     String fnameext = srcFile.getName();
U 104     int dotpos = fnameext.lastIndexOf(".");
105     String fname = fnameext.substring(0, dotpos);
106     String ext = fnameext.substring(dotpos);
107     //logger.fine("fname: " + fname + ", ext: " + ext);
108     Path targetPath = targetDir.toPath();
109     DirectoryStream<Path> stream = Files.newDirectoryStream(srcDir.toPath(), fname + "*" + ext); 
110                                                 //"*.{txt,doc,pdf,ppt}"
111     for (Path path : stream) {
112       //logger.fine(path.getFileName().toString());
113       //Files.delete(path);
114       Files.move(path, targetPath.resolve(path.getFileName()));
115     }
116     stream.close();
117   }
118
119 }