示例#1
0
        /// <summary>
        /// Vérifie si un projet à créer existe à l'emplacement indiqué.
        /// </summary>
        /// <param name="pFile">Chemin vers le projet</param>
        /// <param name="pTitle">Titre du projet</param>
        /// <returns>True si le projet existe, false sinon</returns>
        public bool CheckIfProjectExist(string file, string title)
        {
            bool output = false;

            RunServiceTask(delegate
            {
                output = _Business.CheckIfProjectExist(file, title);
            }, Errors.ERROR_PROJECT_STR_LOAD, file, title);

            return(output);
        }