本文整理汇总了C#中System.IO.All方法的典型用法代码示例。如果您正苦于以下问题:C# System.IO.All方法的具体用法?C# System.IO.All怎么用?C# System.IO.All使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.IO
的用法示例。
在下文中一共展示了System.IO.All方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Does_resolve_nested_files_and_folders
public void Does_resolve_nested_files_and_folders()
{
var pathProvider = GetPathProvider();
pathProvider.DeleteFiles(pathProvider.GetAllFiles());
var allFilePaths = new[] {
"testfile.txt",
"a/testfile-a1.txt",
"a/testfile-a2.txt",
"a/b/testfile-ab1.txt",
"a/b/testfile-ab2.txt",
"a/b/c/testfile-abc1.txt",
"a/b/c/testfile-abc2.txt",
"a/d/testfile-ad1.txt",
"e/testfile-e1.txt",
};
allFilePaths.Each(x => pathProvider.WriteFile(x, x.SplitOnLast('.').First().SplitOnLast('/').Last()));
Assert.That(allFilePaths.All(x => pathProvider.IsFile(x)));
Assert.That(new[] { "a", "a/b", "a/b/c", "a/d", "e" }.All(x => pathProvider.IsDirectory(x)));
Assert.That(!pathProvider.IsFile("notfound.txt"));
Assert.That(!pathProvider.IsFile("a/notfound.txt"));
Assert.That(!pathProvider.IsDirectory("f"));
Assert.That(!pathProvider.IsDirectory("a/f"));
Assert.That(!pathProvider.IsDirectory("testfile.txt"));
Assert.That(!pathProvider.IsDirectory("a/testfile-a1.txt"));
AssertContents(pathProvider.RootDirectory, new[] {
"testfile.txt",
}, new[] {
"a",
"e"
});
AssertContents(pathProvider.GetDirectory("a"), new[] {
"a/testfile-a1.txt",
"a/testfile-a2.txt",
}, new[] {
"a/b",
"a/d"
});
AssertContents(pathProvider.GetDirectory("a/b"), new[] {
"a/b/testfile-ab1.txt",
"a/b/testfile-ab2.txt",
}, new[] {
"a/b/c"
});
AssertContents(pathProvider.GetDirectory("a").GetDirectory("b"), new[] {
"a/b/testfile-ab1.txt",
"a/b/testfile-ab2.txt",
}, new[] {
"a/b/c"
});
AssertContents(pathProvider.GetDirectory("a/b/c"), new[] {
"a/b/c/testfile-abc1.txt",
"a/b/c/testfile-abc2.txt",
}, new string[0]);
AssertContents(pathProvider.GetDirectory("a/d"), new[] {
"a/d/testfile-ad1.txt",
}, new string[0]);
AssertContents(pathProvider.GetDirectory("e"), new[] {
"e/testfile-e1.txt",
}, new string[0]);
Assert.That(pathProvider.GetFile("a/b/c/testfile-abc1.txt").ReadAllText(), Is.EqualTo("testfile-abc1"));
Assert.That(pathProvider.GetDirectory("a").GetFile("b/c/testfile-abc1.txt").ReadAllText(), Is.EqualTo("testfile-abc1"));
Assert.That(pathProvider.GetDirectory("a/b").GetFile("c/testfile-abc1.txt").ReadAllText(), Is.EqualTo("testfile-abc1"));
Assert.That(pathProvider.GetDirectory("a").GetDirectory("b").GetDirectory("c").GetFile("testfile-abc1.txt").ReadAllText(), Is.EqualTo("testfile-abc1"));
var dirs = pathProvider.RootDirectory.Directories.Map(x => x.VirtualPath);
Assert.That(dirs, Is.EquivalentTo(new[] { "a", "e" }));
var rootDirFiles = pathProvider.RootDirectory.GetAllMatchingFiles("*", 1).Map(x => x.VirtualPath);
Assert.That(rootDirFiles, Is.EquivalentTo(new[] { "testfile.txt" }));
var allFiles = pathProvider.GetAllMatchingFiles("*").Map(x => x.VirtualPath);
Assert.That(allFiles, Is.EquivalentTo(allFilePaths));
allFiles = pathProvider.GetAllFiles().Map(x => x.VirtualPath);
Assert.That(allFiles, Is.EquivalentTo(allFilePaths));
pathProvider.DeleteFile("testfile.txt");
pathProvider.DeleteFolder("a");
pathProvider.DeleteFolder("e");
Assert.That(pathProvider.GetAllFiles().ToList().Count, Is.EqualTo(0));
}