PathStructure.Path
PathStructure.Path property
पथ प्राप्त या सेट करता है।
public string Path { get; set; }
संपत्ति मूल्य
पूरा पथ.
उदाहरण
निम्न कोड पथ संरचना संरचना के साथ फ़ाइल लोड करने की क्षमता प्रदर्शित करता है।
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}