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.
我需要识别文件类型并根据文件类型在决策形状中做出决策。
我将收到 2 种类型的文件:csv 和 JPG。因此,如果是 CSV - 发送到这里,如果是 JPG - 发送另一种方式。所以我的问题是如何在编排中识别决策形状的文件类型?
您可以从消息中名为 BTS.ReceivedFileName 的上下文属性中获取文件名。
FileName = InputMessage(BTS.ReceivedFileName);
然后您可能需要调用 C# 方法 Path.GetExtension
extension = Path.GetExtension(FileName);
然后你可以有一个基于扩展的决策形状