管理文件和资源路径
ResourceURI
静态 C# 类表示项目内外文件或资源的路径 (URI)。
小贴士:
ResourceURI
类表示变量的同类型数据。例如,Image
对象的 Path
属性。ResourceURI 对象属性
ResourceURI
对象属性属性 | 数据类型 | 说明 |
---|---|---|
URIType | URIType | 所包含路径的路径类型:
|
ProjectRelativePath | string | 文件相对于 ProjectFiles 文件夹的相对路径。 |
ApplicationRelativePath | string | 文件相对于 ApplicationFiles 文件夹的相对路径。 |
AbsoluteFilePath | string | 项目外部文件的绝对路径。 |
URI | string | 通用资源的绝对路径。 |
URIType | ProjectRelativePath | ApplicationRelativePath | AbsoluteFilePath | URI |
---|---|---|---|---|
URI | - | - | - | URI(例如 URL HTTP) |
ProjectRelative | 相对于 ProjectFiles 文件夹的相对路径 | - | - | 绝对路径 |
ApplicationRelative | - | 相对于 ApplicationFiles 文件夹的相对路径 | - | 绝对路径 |
AbsoluteFilePath | - | - | 绝对路径 | 绝对路径 |
提供反馈