如何检查FileObject是否是文件夹?
我正在使用 Apache Commons VFS(虚拟文件系统)通过 SFTP 访问一些文件。 有谁知道如何检查 org.apache.commons.vfs.FileContent 的实例是否是文件夹?
I'm using Apache Commons VFS (Virtual File System) to access some files over SFTP. Does anybody know how to check if an instance of org.apache.commons.vfs.FileContent is folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是检查
FileObject
,那么您可以使用 [FileObject.getType()
](http://commons.apache.org/vfs/apidocs/org/apache/commons/vfs/FileObject.html#getType ()。给定一个非空的FileContent
,您将始终假设它来自文件此处 说:If you mean checking
FileObject
, then you can use [FileObject.getType()
](http://commons.apache.org/vfs/apidocs/org/apache/commons/vfs/FileObject.html#getType(). Given a non-emptyFileContent
, you would always assume it's coming from a file. As the specification here says: