Exemple #1
0
        /// <summary>
        /// Refresh source control status of all parent folders
        /// </summary>
        /// <param name="folderPath"></param>
        public void RefreshParentFoldersSoucerControlStatus(string folderPath, bool pullParentFolder = false)
        {
            if (pullParentFolder)
            {
                FileAttributes attr;
                attr = File.GetAttributes(folderPath);

                if ((attr & FileAttributes.Directory) == FileAttributes.Directory)
                {
                    folderPath = Directory.GetParent(folderPath).FullName;
                }
                else
                {
                    folderPath = Path.GetDirectoryName(folderPath);
                }
            }

            RepositoryFolderBase repoFolder = GetRepositoryFolderByPath(folderPath);

            if (repoFolder != null)
            {
                repoFolder.RefreshFolderSourceControlStatus();
                RefreshParentFoldersSoucerControlStatus(Directory.GetParent(folderPath).FullName);
            }
        }
        /// <summary>
        /// Refresh source control status of all parent folders
        /// </summary>
        /// <param name="folderPath"></param>
        public void RefreshParentFoldersSoucerControlStatus(string folderPath)
        {
            RepositoryFolderBase repoFolder = GetRepositoryFolderByPath(folderPath);

            if (repoFolder != null)
            {
                repoFolder.RefreshFolderSourceControlStatus();
                RefreshParentFoldersSoucerControlStatus(Directory.GetParent(folderPath)?.FullName);
            }
        }