毕设 719 ExcuteProcessThing

  1. 论文 刚完成初稿

  2. 719

windows共享文件夹问题: 上次的解决方案用不了,因为不能保证服务器先开机

在网上没找到自动连接的方法

因此实现了一个thing

  1. ExcuteProcessThing

ExcuteProcessThing可以执行一些命令行指令 指令写在tasks中 指令的执行可以通过直接invoke method调用 也可以通过监听事件调用

public string[] tasks;
public string[] EventPaths;
public string[] EventKinds;
  1. excutepro在719中使用

监听采集完成事件,事件发生时执行bat 执行 start "" "D:" 打开共享文件夹的本地映射路径,进行连接

{
  "tasks": [
    ".\\thingConfig\\excute\\connect.bat"
  ],
  "EventPaths": [
    "/card0"
  ],
  "EventKinds": [
    "AITaskFinished"
  ]
}

原本使用的json yml 配置文件都可以解析,但是win7又少dll了,YamlDotNet的依赖缺少运行不起来,改成了仅使用json


本文章使用limfx的vscode插件快速发布