2

我正在尝试从位于 sftp 服务器上的目录中提取最新文件。我现在做的方式或多或少是:

public FileObject getLatestFile(String directory) throws FileSystemException {
    FileObject fo = fsManager.resolveFile(this.host+directory, fsOptions);
    FileObject latestFile = null;
    long max  = 0;
    fo.getContent().
    for (FileObject fob : fo.getChildren()){
        if (fob.getContent().getLastModifiedTime() > max) {
            max = fob.getContent().getLastModifiedTime();
            latestFile = fob;
        }
    }
    return latestFile;
}

这种方法的问题在于,每次调用该方法时,我基本上都会下载给定目录中的每个文件。

有没有更好的方法来做到这一点?

4

1 回答 1

6

您没有下载内容。

如果你查看源代码:

/**
 * Returns the file's content.
 */
public FileContent getContent() throws FileSystemException
{
    synchronized (fs)
    {
        attach();
        if (content == null)
        {
            content = new DefaultFileContent(this, getFileContentInfoFactory());
        }
        return content;
    }
}

调用 getContent 只返回一个对象实现并获取大小等属性,修改日期基本上是在探索远程文件夹时提取的(每个协议都不同,但例如,当您列出 FTP 文件夹时,您将获得所有文件属性)。

对于 SFTP,这就是您实际所说的:

protected long doGetLastModifiedTime() throws Exception
{
    if (attrs == null
            || (attrs.getFlags() & SftpATTRS.SSH_FILEXFER_ATTR_ACMODTIME) == 0)
    {
        throw new FileSystemException(
                "vfs.provider.sftp/unknown-modtime.error");
    }
    return attrs.getMTime() * 1000L;
}

I agree, naming is confusing and it implies that content is retrieved when getContent is invoked but actually is not.

于 2010-01-04T17:32:48.137 回答