Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MS 访问根据我的表数据输出一些 XML 文件。
为了实现这一点,如果目录不存在,我需要我的脚本来创建目录。
该目录应该基于表中的一个字段。现在它正在使用“类别”字段。
If Len(Dir("P:\" + rs!Category, vbDirectory)) = 0 Then MkDir "P:\" + rs!Category End If
它似乎有效,但给了我一个错误。(运行时错误 13 类型不匹配)
Dir(Null, vbDirectory)引发错误 13,“类型不匹配”。
Dir(Null, vbDirectory)
调用时确保rs!Category不是 Null,Dir()因为"P:\" + Null会返回 Null。
rs!Category
Dir()
"P:\" + Null