检查文件夹中是否存在任何文件 (VBScript)

发布于 2024-11-25 02:26:35 字数 170 浏览 1 评论 0原文

如何检查文件夹中是否存在任意名称的文件?我还想忽略子文件夹。

谢谢。

编辑:

我想我已经明白了,但也感谢任何贡献......

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

够运 2024-12-02 02:26:35

我想你已经明白了,几乎就是这样。

Const PATH = "C:\Path\to\folder"
dim fso: set fso = CreateObject("Scripting.FileSystemObject")
dim folder: set folder = fso.getFolder(PATH)
if folder.files.Count <> 0 then
    'do something
end if

你可能想在 getFolder(PATH) 之前使用 FolderExists() 检查路径是否有效,或者在以下情况下捕获错误:路径不存在。 files 集合不包含子文件夹。

I think you've got it, pretty much it's

Const PATH = "C:\Path\to\folder"
dim fso: set fso = CreateObject("Scripting.FileSystemObject")
dim folder: set folder = fso.getFolder(PATH)
if folder.files.Count <> 0 then
    'do something
end if

You might want to check the path is valid with FolderExists() before the getFolder(PATH) or catch the error if the path does not exist. The files collection does not include subfolders.

脱离于你 2024-12-02 02:26:35

查看文件系统对象 (FSO)。它使用 FileExists() 等方法和 FolderExists()

Take a look at the Filesystem Object (FSO). It sports methods such as FileExists() and FolderExists().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文