我编写了一个程序,它将在我的 PC 中搜索具有给定扩展名的文件。现在我想再添加一件事。我希望我的程序将这些文件复制到我电脑上的特定位置。这是我的代码示例:-
Finder(String pattern)
{
matcher = FileSystems.getDefault().getPathMatcher("glob:" + pattern);
}
// Compares the pattern against
// the file or directory name.
void find(Path file) {
Path name = file.getFileName();
if (name != null && matcher.matches(name)) {
System.out.println(file);
String s = new String(name.toString());
//System.out.println(s);
File f = new File(s);
//System.out.println(f.getAbsolutePath());
FileInputStream fileInputStream = null;