在 C# 中,从 \data\notes 目录获取所有 .nsf 文件(Notes 数据库)并将其填充到列表框中
在 C# 中,从 \data\notes 目录获取所有 .nsf 文件(Notes 数据库),并将其填充到列表框或组合框或树视图中。 我正在使用“Interop.Domino.dll”。
In C# Get All the .nsf files(Notes Database) from \data\notes directory and populate it in a Listbox or combo box or in Tree View.
I am using "Interop.Domino.dll".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您从 Domino 服务器以外的任何地方运行应用程序,则可以使用 Notes 类访问服务器并循环访问所有数据库。 这是基本结构:
If you are running your app from anywhere other than the Domino server, you can use the Notes classes to access the server and loop over all databases. Here is the basic structure:
您可以获取一个目录对象,然后通过 dos 掩码将其作为数组请求文件。
You could get a directory object and then ask for files by a dos mask from it as an array.