PathStructure.Prefix
PathStructure.Prefix property
경로 접두사를 가져오거나 설정합니다.
public string Prefix { get; set; }
자산 가치
전체 경로입니다.
예
다음 코드는 PathStructure 구조로 파일을 로드하는 기능을 보여줍니다.
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}