當前位置: 首頁>>代碼示例>>C#>>正文


C# DirectoryInfo.ToZip方法代碼示例

本文整理匯總了C#中System.IO.DirectoryInfo.ToZip方法的典型用法代碼示例。如果您正苦於以下問題:C# DirectoryInfo.ToZip方法的具體用法?C# DirectoryInfo.ToZip怎麽用?C# DirectoryInfo.ToZip使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.IO.DirectoryInfo的用法示例。


在下文中一共展示了DirectoryInfo.ToZip方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: GetZipBytesForChecker

 private byte[] GetZipBytesForChecker(string code)
 {
     var directoryName = Path.Combine(SlideFolderPath.FullName, ExerciseDir);
     List<string> excluded = (PathsToExcludeForChecker ?? new string[0]).Concat(new[] { "bin/*", "obj/*" }).ToList();
     var exerciseDir = new DirectoryInfo(directoryName);
     return exerciseDir.ToZip(excluded,
         new[]
         {
             new FileContent { Path = UserCodeFileName, Data = Encoding.UTF8.GetBytes(code) },
             new FileContent { Path = CsprojFileName,
                 Data = ProjModifier.ModifyCsproj(
                         exerciseDir.GetFile(CsprojFileName),
                         p => ProjModifier.PrepareForChecking(p, this, excluded)) }
         });
 }
開發者ID:kontur-edu,項目名稱:uLearn,代碼行數:15,代碼來源:ProjectExerciseBlock.cs

示例2: InitialCodeIsNotSolutionForProjExercise

		private void InitialCodeIsNotSolutionForProjExercise(ExerciseSlide slide)
		{
			var exercise = (ProjectExerciseBlock)slide.Exercise;
			var directoryName = Path.Combine(exercise.SlideFolderPath.FullName, exercise.ExerciseDir);
			var excluded = (exercise.PathsToExcludeForChecker ?? new string[0]).Concat(new[] { "bin/*", "obj/*" }).ToList();
			var exerciseDir = new DirectoryInfo(directoryName);
			var bytes = exerciseDir.ToZip(excluded, new[]
			{
				new FileContent
				{
					Path = exercise.CsprojFileName,
					Data = ProjModifier.ModifyCsproj(exerciseDir.GetFile(exercise.CsprojFileName),
						proj => ProjModifier.PrepareForChecking(proj, exercise, excluded))
				}
			});
			var result = SandboxRunner.Run(new ProjRunnerSubmission
			{
			    Id = slide.Id.ToString(),
			    ZipFileData = bytes,
			    ProjectFileName = exercise.CsprojFileName,
			    Input = "",
			    NeedRun = true
			});
			var isOk = result.Verdict.IsOneOf(Verdict.Ok, Verdict.MemoryLimit, Verdict.TimeLimit);
			if (!isOk)
				ReportSlideError(slide, "Exercise initial code verdict is not OK. RunResult = " + result);
			else if (result.Verdict == Verdict.Ok && result.Output == "")
				ReportSlideError(slide, "Exercise initial code (available to students) is solution!");
		}
開發者ID:kontur-edu,項目名稱:uLearn,代碼行數:29,代碼來源:CourseValidator.cs

示例3: InitialCodeIsNotSolutionForProjExercise

		private static void InitialCodeIsNotSolutionForProjExercise(ExerciseSlide slide)
		{
			var exercise = slide.Exercise as ProjectExerciseBlock;
			var directoryName = Path.Combine(exercise.SlideFolderPath.FullName, exercise.ExerciseDir);
			var excluded = (exercise.PathsToExcludeForChecker ?? new string[0]).Concat(new[] { "bin/*", "obj/*" }).ToList();
			var exerciseDir = new DirectoryInfo(directoryName);
			var bytes = exerciseDir.ToZip(excluded, new[]
			{
				new FileContent
				{
					Path = exercise.CsprojFileName,
					Data = ProjModifier.ModifyCsproj(exerciseDir.GetFile(exercise.CsprojFileName),
						proj => ProjModifier.PrepareForChecking(proj, exercise, excluded))
				}
			});
			var result = SandboxRunner.Run(new ProjRunnerSubmission
			{
			    Id = slide.Id.ToString(),
			    ZipFileData = bytes,
			    ProjectFileName = exercise.CsprojFileName,
			    Input = "",
			    NeedRun = true
			});

			Console.WriteLine("Result = " + result);
			Assert.AreEqual(Verdict.Ok, result.Verdict);

			Assert.AreNotEqual("", result.Output);
		}
開發者ID:kontur-edu,項目名稱:uLearn,代碼行數:29,代碼來源:BaseCourseTests.cs


注:本文中的System.IO.DirectoryInfo.ToZip方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。