/// <summary>
/// Constructs a new ShellFile object given a file path
/// </summary>
/// <param name="path">The file or folder path</param>
/// <returns>ShellFile object created using given file path.</returns>
static public ShellFile FromFilePath(string path)
{
return new ShellFile(path);
}
Thank you.
Thank you.