检查文件夹中是否存在任何文件 (VBScript)
如何检查文件夹中是否存在任意名称的文件?我还想忽略子文件夹。
谢谢。
编辑:
我想我已经明白了,但也感谢任何贡献......
If Folder.Files.Count > 0 Then
'Do something
How can I check if there exists a file within a folder with any name? I also want to ignore sub-folders.
Thanks.
EDIT:
Think I've got it but any contributions are also appreciated...
If Folder.Files.Count > 0 Then
'Do something
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你已经明白了,几乎就是这样。
你可能想在
getFolder(PATH)
之前使用FolderExists()
检查路径是否有效,或者在以下情况下捕获错误:路径不存在。files
集合不包含子文件夹。I think you've got it, pretty much it's
You might want to check the path is valid with
FolderExists()
before thegetFolder(PATH)
or catch the error if the path does not exist. Thefiles
collection does not include subfolders.查看文件系统对象 (FSO)。它使用
FileExists()
等方法和FolderExists()
。Take a look at the Filesystem Object (FSO). It sports methods such as
FileExists()
andFolderExists()
.