src/de/uhilger/fm/CopyMoveVisitor.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Deflator.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/DirList.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Duplicator.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Eraser.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/FileHelper.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/ImageFileFilter.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Inflator.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Lister.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Mover.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Renamer.java | ●●●●● patch | view | raw | blame | history | |
src/de/uhilger/fm/Writer.java | ●●●●● patch | view | raw | blame | history |
src/de/uhilger/fm/CopyMoveVisitor.java
File was renamed from src/de/uhilger/fm/OrdnerBearbeiter.java @@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -32,7 +32,7 @@ * @author Ulrich Hilger * @version 1, 14. Mai 2021 */ public class OrdnerBearbeiter extends FileHelper implements FileVisitor { public class CopyMoveVisitor extends FileHelper implements FileVisitor { private Path targetDir; private int operation; src/de/uhilger/fm/Deflator.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/DirList.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/Duplicator.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/Eraser.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -41,7 +41,7 @@ File targetFile = new File(targetDir, fileName); //logger.fine(targetFile.getAbsolutePath()); if (targetFile.isDirectory()) { OrdnerBearbeiter bearbeiter = new OrdnerBearbeiter(); CopyMoveVisitor bearbeiter = new CopyMoveVisitor(); bearbeiter.setOperation(Const.OP_DELETE); Files.walkFileTree(targetFile.toPath(), bearbeiter); } else { src/de/uhilger/fm/FileHelper.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/ImageFileFilter.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/Inflator.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/Lister.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/Mover.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -41,7 +41,7 @@ //logger.fine("srcFile: " + srcFile); if (srcFile.isDirectory()) { //logger.fine("srcFile is directory."); OrdnerBearbeiter bearbeiter = new OrdnerBearbeiter(); CopyMoveVisitor bearbeiter = new CopyMoveVisitor(); bearbeiter.setTargetDir(targetDir.toPath()); bearbeiter.setOperation(operation); Files.walkFileTree(srcFile.toPath(), bearbeiter); src/de/uhilger/fm/Renamer.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify src/de/uhilger/fm/Writer.java
@@ -1,5 +1,5 @@ /* neon-fm - File management extensions to Neon fm - File management class library Copyright (C) 2024 Ulrich Hilger This program is free software: you can redistribute it and/or modify