我有一个小部件,允许用户将电子邮件或文件拖放到小部件中,以将其复制到文件系统。它是OpenNTF中的FileExplorer项目,由比我更有经验的人设计。我想修改它以提供一个新的文件名,如果当前文件名已经存在于他们放置它的位置。通过电子邮件,我希望能够抓住发件人和日期,但是当我在拖放电子邮件期间尝试访问文件内容时,我一直在抛出错误。
所以,我的问题实际上很简单。我已经得到了' if'确定是否采用了文件名,但是我试图弄清楚如何测试文件名的多个选项(比如编号然后' file1.eml',' file2.eml&# 39;,' file3.eml')。我在下面尝试插入DUPLICATE这个词,但我没有快乐。
try {
if (source.isDirectory()) {
File dirTarget = new File(fDest.getAbsoluteFile() + File.separator + source.getName());
if (!dirTarget.exists()) {
dirTarget.mkdir();
}
copyDir(monitor, source, dirTarget);
}
if (source.isFile()) {
File dest = new File(fDest.getAbsolutePath() + File.separator + source.getName());
if (dest.getAbsolutePath().compareTo(source.getAbsolutePath()) != 0) {
copyFile(monitor, source, dest);
} else {
dest = new File(fDest.getAbsolutePath() + File.separator + "DUPLICATE" + File.separator + source.getName());
copyFile(monitor, source, dest);
}
}
} catch (IOException e) {
}
作为参考,copyFile方法的参数是
private void copyFile(IProgressMonitor monitor, File fSource, File fTarget) throws IOException
答案 0 :(得分:1)
您需要构建不同的文件名。
File.seperator
导致/ \或:取决于您的平台,因为它是分隔the directory from the file的字符。
由于您要删除文件,因此您无需检查目录。您需要一个循环来测试文件名。为了方便使用(DUPLICATE 1)(DUPLICATE 2)等,请执行以下操作:
private final static String DUPLICATE = "DUPLICATE";
private void copyOut(File source, File fDest, Monitor monitor) {
try {
if (!source.exists() || !fDest.exists()) {
// one or two files missing, can't copy
// handle error here!
} else {
String destName = fDest.getAbsolutePath()+ File.separator + source.getName();
File dest = new File(destName);
if (source.isDirectory()) {
if (!dest.exists()) {
destPath.mkdirs(); // Fix missing
} else if (dest.isFile()) {
// Raise an error. Destination exists as file source is directory!!!
}
} else { // We checked for existence and dir, so it is a file
// Don't overwrite an existing file
dest = this.checkforDuplicate(dest);
}
copyFile(monitor, source, dest);
}
} catch (IOException e) {
// Error handling missing here!
}
}
private File checkforDuplicate(File dest) {
if (!dest.exists()) {
return dest;
}
int duplicateNum = 1;
while (true) {
ArrayList<String> pieces = Arrays.asList(dest.getAbsolutePath().split("."));
pieces.add(pieces.size()-1, DUPLICATE);
if (duplicateNum > 1) {
pieces.add(pieces.size()-1,Integer.toString(duplicateNum));
}
duplicateNum++;
StringBuilder newName = newStringBuilder();
for (String s : pieces) {
newName.append(s);
newName.append(".");
}
// Strip the last .
String outName = newName.substring(0, newName.length()-2);
File result = new File(outName);
if (!result.exists()) {
return result;
}
}
}
检查代码,注销内存,将包含拼写错误。也没有处理不包含点的文件名。