private string PrepareWorkspace(RssFeed feed) { // Create the working folder for the collection if it doesn't exist string workingFolder = Path.Combine(_utils.GetAssemblyDirectory(), feed.CollectionName); if (!Directory.Exists(workingFolder)) { Log.Information("Creating folder '{workingFolder}'", workingFolder); Directory.CreateDirectory(workingFolder); } return(workingFolder); }