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.
我将 CANoe 设置配置为使用动态命名约定自动将日志文件保存到文件夹(即:输出文件名具有日期和时间,它们不是常量)。
我想在保存此文件后使用on Stop()CAPL 脚本的过程对它执行一些操作。为了确保定位正确的日志文件,我想使用它的名称,它是动态创建的(这是一个约束)。我怎样才能做到这一点?
on Stop()
如果触发后处理脚本是一个选项,那么使用 COM 接口是最好的选择。按着这些次序:
例如。 App.Configuration.OnlineSetup.LoggingCollection.Item(1).FullName 请注意,Item对象的索引值从 1 开始(而不是从 0)。
App.Configuration.OnlineSetup.LoggingCollection.Item(1).FullName
Item