从 Perl 访问 M 文件 API
我正在尝试从 Perl 脚本访问 M-Files API(M-Files 是一个文档管理系统)。我希望复制模板 M 文件视图并使用适当的过滤器创建一个新的视图。
M-Files API 可以从 C#、VB.NET、VBA(例如 Excel 等)访问。由于我希望使用 Perl,Perl Win32::OLE 模块是正确的起点吗?
你知道我可以编写 Perl 来访问 Windows 和 M 文件对象空间的方法吗?我希望按照以下 VBA 代码行创建新的 M-Files API 搜索条件:
Dim oSearchCriteria As New MFilesAPI.SearchCriteria
我知道如何从 Perl 访问 Windows 函数,但是我需要哪些 Perl 包来实例化一个
I am trying to access the M-Files API (M-Files is a document management system) from a Perl script. I wish to copy a template M-Files view and create a new one with appropriate filters.
The M-Files API can be accessed from C#, VB.NET, VBA such as Excel, etc. As I wish to use Perl, is the Perl Win32::OLE module the correct starting point?
Do you know of a way I can write Perl to access the Windows and M-Files object space ? I wish to do stuff like creating a new M-Files API Search Criteria as per the following line of VBA code:
Dim oSearchCriteria As New MFilesAPI.SearchCriteria
I know how to access Windows functions from Perl, but what Perl packages do I need to instantiate a
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不熟悉 M 文件,但是,Win32::OLE可能是要走的路。尝试这样的事情:
I'm not familiar with M-Files, but yes, Win32::OLE is probably the way to go. Try something like this: