本文整理汇总了C#中FileNode.FileCount方法的典型用法代码示例。如果您正苦于以下问题:C# FileNode.FileCount方法的具体用法?C# FileNode.FileCount怎么用?C# FileNode.FileCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileNode
的用法示例。
在下文中一共展示了FileNode.FileCount方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FileCount_FolderWithOneFile
public void FileCount_FolderWithOneFile()
{
IFileBase fileInfo = Utils.MockFolder("root", "root");
IFileBase childFileInfo = Utils.MockFile("file", "file", "text/plain");
IFileNode fileNode = new FileNode(fileInfo, new List<IFileNode>
{
new FileNode(childFileInfo)
});
Assert.AreEqual(1, fileNode.FileCount());
}
示例2: FileCount_TwoFoldersThreeFiles
public void FileCount_TwoFoldersThreeFiles()
{
IFileBase rootFolder = Utils.MockFolder("root", "root");
IFileBase childFolder = Utils.MockFolder("folder", "folder");
IFileBase rootFile = Utils.MockFile("file", "file", "text/plain");
IFileBase childFile1 = Utils.MockFile("file1", "file1", "text/plain");
IFileBase childFile2 = Utils.MockFile("file2", "file2", "text/plain");
IFileNode fileNode = new FileNode(rootFolder, new List<IFileNode>
{
new FileNode(rootFile),
new FileNode(childFolder, new List<IFileNode>
{
new FileNode(childFile1),
new FileNode(childFile2)
})
});
Assert.AreEqual(3, fileNode.FileCount());
}
示例3: FileCount_SingleFile
public void FileCount_SingleFile()
{
IFileBase childFileInfo = Utils.MockFile("file", "file", "text/plain");
IFileNode fileNode = new FileNode(childFileInfo);
Assert.AreEqual(1, fileNode.FileCount());
}
示例4: FileCount_EmptyFolder
public void FileCount_EmptyFolder()
{
IFileBase fileInfo = Utils.MockFolder("root", "root");
IFileNode fileNode = new FileNode(fileInfo);
Assert.AreEqual(0, fileNode.FileCount());
}