|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FileIsADirectoryException | |
---|---|
net.sourceforge.jaulp.file | This package contains helper classes for handling File objects. |
net.sourceforge.jaulp.file.copy | Provides classes for copying of files or directories. |
Uses of FileIsADirectoryException in net.sourceforge.jaulp.file |
---|
Methods in net.sourceforge.jaulp.file that throw FileIsADirectoryException | |
---|---|
static boolean |
FileUtils.copyFile(java.io.File source,
java.io.File destination)
Deprecated. Use instead the method CopyFileUtils.copyFile(source, destination). |
Uses of FileIsADirectoryException in net.sourceforge.jaulp.file.copy |
---|
Methods in net.sourceforge.jaulp.file.copy that throw FileIsADirectoryException | |
---|---|
static boolean |
CopyFileUtils.copyDirectory(java.io.File source,
java.io.File destination)
Copies the given source directory to the given destination directory. |
static boolean |
CopyFileUtils.copyDirectory(java.io.File source,
java.io.File destination,
boolean lastModified)
Copies the given source directory to the given destination directory with the option to set the lastModified time from the given destination file or directory. |
static boolean |
CopyFileUtils.copyDirectoryWithFileFilter(java.io.File source,
java.io.File destination,
java.io.FileFilter fileFilter,
boolean lastModified)
Copies all files that match to the FileFilter from the given source directory to the given destination directory with the option to set the lastModified time from the given destination file or directory. |
static boolean |
CopyFileUtils.copyDirectoryWithFileFilters(java.io.File source,
java.io.File destination,
java.io.FileFilter includeFileFilter,
java.io.FileFilter excludeFileFilter,
boolean lastModified)
Copies all files that match to the given includeFileFilter and does not copy all the files that match the excludeFileFilter from the given source directory to the given destination directory with the option to set the lastModified time from the given destination file or directory. |
static boolean |
CopyFileUtils.copyDirectoryWithFilenameFilter(java.io.File source,
java.io.File destination,
java.io.FilenameFilter filenameFilter,
boolean lastModified)
Copies all files that match to the FilenameFilter from the given source directory to the given destination directory with the option to set the lastModified time from the given destination file or directory. |
static boolean |
CopyFileUtils.copyDirectoryWithFilenameFilters(java.io.File source,
java.io.File destination,
java.io.FilenameFilter includeFilenameFilter,
java.io.FilenameFilter excludeFilenameFilter,
boolean lastModified)
Copies all files that match to the given includeFilenameFilter and does not copy all the files that match the excludeFilenameFilter from the given source directory to the given destination directory with the option to set the lastModified time from the given destination file or directory. |
static boolean |
CopyFileUtils.copyFile(java.io.File source,
java.io.File destination)
Copies the given source file to the given destination file. |
static boolean |
CopyFileUtils.copyFile(java.io.File source,
java.io.File destination,
boolean lastModified)
Copies the given source file to the given destination file with the option to set the lastModified time from the given destination file. |
static boolean |
CopyFileUtils.copyFileToDirectory(java.io.File source,
java.io.File destinationDir)
Copies the given source file to the given destination directory. |
static boolean |
CopyFileUtils.copyFileToDirectory(java.io.File source,
java.io.File destinationDir,
boolean lastModified)
Copies the given source file to the given destination directory with the option to set the lastModified time from the given destination directory. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |