public void CreateJunction(string junctionPath, bool overwrite, bool copyTargetTimestamps, PathFormat pathFormat)
        {
            UpdateSourcePath(junctionPath, Directory.CreateJunctionCore(Transaction, junctionPath, LongFullName, overwrite, copyTargetTimestamps, pathFormat));

            RefreshEntryInfo();
        }
        public void CreateJunction(string junctionPath, PathFormat pathFormat)
        {
            UpdateSourcePath(junctionPath, Directory.CreateJunctionCore(Transaction, junctionPath, LongFullName, false, false, pathFormat));

            RefreshEntryInfo();
        }
        public void CreateJunction(string junctionPath, bool overwrite)
        {
            UpdateSourcePath(junctionPath, Directory.CreateJunctionCore(Transaction, junctionPath, LongFullName, overwrite, false, PathFormat.RelativePath));

            RefreshEntryInfo();
        }