FilePatternMatch.Path 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取匹配文件的路径(相对于匹配搜索模式的开头)。
public:
property System::String ^ Path { System::String ^ get(); };
public string Path { get; }
member this.Path : string
Public ReadOnly Property Path As String
属性值
注解
如果匹配程序搜索了“src/Project/**/*.cs”,并且模式匹配程序找到了“src/Project/Interfaces/IFile.cs”,则 Stem = “Interfaces/IFile.cs” 和 Path = “src/Project/Interfaces/IFile.cs”。