-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
GetDirectories.cs
47 lines (40 loc) · 1.71 KB
/
GetDirectories.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Linq;
using Xunit;
namespace System.IO.Tests
{
public class DirectoryInfo_GetDirectories : Directory_GetDirectories_str
{
public override string[] GetEntries(string path)
{
return ((new DirectoryInfo(path).GetDirectories().Select(x => x.FullName)).ToArray());
}
}
public class DirectoryInfo_GetDirectories_str : Directory_GetDirectories_str_str
{
public override string[] GetEntries(string path)
{
return ((new DirectoryInfo(path).GetDirectories("*").Select(x => x.FullName)).ToArray());
}
public override string[] GetEntries(string path, string searchPattern)
{
return ((new DirectoryInfo(path).GetDirectories(searchPattern).Select(x => x.FullName)).ToArray());
}
}
public class DirectoryInfo_GetDirectories_str_so : Directory_GetDirectories_str_str_so
{
public override string[] GetEntries(string path)
{
return ((new DirectoryInfo(path).GetDirectories("*", SearchOption.TopDirectoryOnly).Select(x => x.FullName)).ToArray());
}
public override string[] GetEntries(string path, string searchPattern)
{
return ((new DirectoryInfo(path).GetDirectories(searchPattern, SearchOption.TopDirectoryOnly).Select(x => x.FullName)).ToArray());
}
public override string[] GetEntries(string path, string searchPattern, SearchOption option)
{
return ((new DirectoryInfo(path).GetDirectories(searchPattern, option).Select(x => x.FullName)).ToArray());
}
}
}