BloomTemp.TemporaryFolder.TrackExisting C# (CSharp) Method

TrackExisting() public static method

public static TrackExisting ( string path ) : TemporaryFolder
path string
return TemporaryFolder
        public static TemporaryFolder TrackExisting(string path)
        {
            Debug.Assert(Directory.Exists(path));
            TemporaryFolder f = new TemporaryFolder();
            f._path = path;
            return f;
        }