PathStructure.Path

PathStructure.Path property

Gets or sets the path.

public string Path { get; set; }

Property Value

The full path.

Examples

The following code demonstrates ability to load file with PathStructure structure.

[C#]

string srcFile = "shirt-color.psd";
string output = "output.psd";

using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
    image.Save(output);
}

See Also