为了账号安全,请及时绑定邮箱和手机立即绑定

JCIFS SmbFile RenameTo 无法移动文件

JCIFS SmbFile RenameTo 无法移动文件

慕村225694 2021-12-18 15:14:46
我有使用 JCIFS SmbFile.renameTo() 方法的最奇怪的行为。当我执行下面的代码时,它应该将网络文件从 test1 移动到 test2,但它会在 test2 中创建一个名为 test.xml 的文件夹并抛出以下错误“当该文件已经存在时无法创建文件...”我可以想不通 为什么这种方法会这样做? NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication (sDomain,                                        sUsername, sPassword); SmbFile smbFromFile = new SmbFile("smb://test1/test.xml", auth); SmbFile smbToFile = new SmbFile("smb://test2/test.xml", auth); smbFromFile.renameTo(smbToFile);
查看完整描述

2 回答

?
GCT1015

TA贡献1827条经验 获得超4个赞

copyTo(SmbFile)和之间有一个有趣的区别renameTo(SmbFile)- 只有其中一个说此文件和目标文件不需要在同一主机上。由于renameTo(SmbFile)它没有说,我只能假设,你应该使用copyTo,然后delete()将原来的。


SmbFile smbFromFile = new SmbFile("smb://test1/test.xml", auth);

SmbFile smbToFile = new SmbFile("smb://test2/test.xml", auth);

// smbFromFile.renameTo(smbToFile);

smbFromFile.copyTo(smbToFile);

smbFromFile.delete();


查看完整回答
反对 回复 2021-12-18
?
心有法竹

TA贡献1866条经验 获得超5个赞

有两种可能的场景:


1.)文件需要移动到同一台服务器上(即输入文件夹和输出文件夹的认证细节是相同的)。


使用 renameTo() 方法。


 public boolean moveFile(SmbFile file) {

    log.info("{"Started Archiving or Moving the file");

    String targetFilePath = this.archiveDir + file.getName(); //Path where we need to move that file.

    try {

        NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("", userId, userPassword);

        log.info("targetFilePath: {} , currentFile : {}",targetFilePath, file);

        SmbFile targetFile = new SmbFile(targetFilePath, auth); 

          //authenticate the SmbFile

        try {

            file.renameTo(targetFile); //User renameTo method for same server

            log.info("Archived File : {} to: {}", file.getName(), 

            targetFile.getName());

            return true;

        } catch (SmbException e) {

            log.error("Unable to Archive File: {}", file.getName());

            return false;

        }

    } catch (MalformedURLException e) {

        log.error("Connection failed to Server Drive: {}", targetFilePath);

    }

    return false;

}

2.)文件需要在不同的服务器上移动(即输入文件夹和输出文件夹的身份验证详细信息 不相同)。


使用 copyTo() 方法。


在这里,我建议,您可以首先验证存在文件的第一台服务器,并检查文件是否存在,如果存在,则将其添加到列表中:


public List<SmbFile> xmlFiles = new ArrayList<>(); //Here we will add all the files which are existing.


public boolean isFileExists() throws MalformedURLException, SmbException {

  NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("", 

  userID, userPassword); //authenticating input folder.

    SmbFile smbFile = new SmbFile(inputFolder, auth);

    SmbFile[] smbFiles = smbFile.listFiles();

    boolean isFilePresent = false;

    if (smbFiles.length > 0) {

        for (SmbFile file : smbFiles) {

            if (file.getName().toLowerCase(Locale.ENGLISH)              

       .contains(AppConstant.FILE_NAME.toLowerCase(Locale.ENGLISH))) {

                xmlFiles.add(file);

                isFilePresent = true;

            }

        }

    }

    if (isPlanFilePresent) {

        log.info("Number of files present on Server: {}",smbFiles.length);

        return true;

    }

    return false;

}

这将为您提供列表中的文件。继续将其复制到另一台服务器。请注意,您只需要在此处对输出文件夹进行身份验证。


 public boolean moveFile(SmbFile file) {

    log.info("Started Moving or Archiving the file");

    String toFilePath = this.outputFolder + file.getName(); //path where you need to copy the file from input folder.

    try {

        NtlmPasswordAuthentication auth1 = new NtlmPasswordAuthentication("", outputFolderUserId, outputFolderPassword); //authenticating output folder

        log.info("targetFilePath: {} and currentFile : {}", toFilePath, file);

        SmbFile targetFile = new SmbFile(toFilePath, auth1);

      

        try {

            file.copyTo(targetFile);

            file.delete(); //delete the file which we copied at our desired server

            log.info("Archived File : {} to: {}", file.getName(), targetFile.getName());

            return true;

        } catch (SmbException e) {

            log.error("Unable to Archive File: {}", file.getName());

            return false;

        }


    } catch (MalformedURLException e) {

        log.error("Connection failed to Server Drive: {}", toFilePath);

    }

    return false;

}

很高兴能帮助你 :)


查看完整回答
反对 回复 2021-12-18
  • 2 回答
  • 0 关注
  • 430 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信