Example #1
0
        public void CreateViewFolder(string viewFolderName)
        {
            var path = Path.Combine(AppConfigProvider.AppConfig.ViewsRoot, viewFolderName);

            if (!FileSystemUtils.DirectoryExists(path))
            {
                FileSystemUtils.CreateDirectory(path);
            }
        }
Example #2
0
        protected void CreateSourceFilesDirectory(InputScript s)
        {
            var path = Path.Combine(AppConfigProvider.AppConfig.ScriptsFolder, s.Name);

            FileSystemUtils.CreateDirectory(path);
        }