Home
last modified time | relevance | path

Searched refs:EnumerateFileSystemInfos (Results 1 – 25 of 32) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/tests/DirectoryInfo/
H A DEnumerableAPIs.cs53 #region EnumerateFileSystemInfos
59 … return ((new DirectoryInfo(path).EnumerateFileSystemInfos().Select(x => x.FullName)).ToArray()); in GetEntries()
67 …return ((new DirectoryInfo(path).EnumerateFileSystemInfos("*").Select(x => x.FullName)).ToArray()); in GetEntries()
72 …return ((new DirectoryInfo(path).EnumerateFileSystemInfos(searchPattern).Select(x => x.FullName)).… in GetEntries()
81 …return ((new DirectoryInfo(path).EnumerateFileSystemInfos("*", SearchOption.TopDirectoryOnly).Sele… in GetEntries()
86 …return ((new DirectoryInfo(path).EnumerateFileSystemInfos(searchPattern, SearchOption.TopDirectory… in GetEntries()
91 …return ((new DirectoryInfo(path).EnumerateFileSystemInfos(searchPattern, option).Select(x => x.Ful… in GetEntries()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/src/System/IO/
H A DDirectoryInfo.cs150 …erable<FileInfo> enumerable = (IEnumerable<FileInfo>)FileSystem.EnumerateFileSystemInfos(FullPath,… in InternalGetFiles()
195 …IEnumerable<FileSystemInfo> enumerable = FileSystem.EnumerateFileSystemInfos(FullPath, searchPatte… in InternalGetFileSystemInfos()
238 …ectoryInfo> enumerable = (IEnumerable<DirectoryInfo>)FileSystem.EnumerateFileSystemInfos(FullPath,… in InternalGetDirectories()
270 …return (IEnumerable<DirectoryInfo>)FileSystem.EnumerateFileSystemInfos(FullPath, searchPattern, se… in InternalEnumerateDirectories()
301 …return (IEnumerable<FileInfo>)FileSystem.EnumerateFileSystemInfos(FullPath, searchPattern, searchO… in InternalEnumerateFiles()
304 public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos() in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
309 public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos(string searchPattern) in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
317 …public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos(string searchPattern, SearchOption sea… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
332 …return FileSystem.EnumerateFileSystemInfos(FullPath, searchPattern, searchOption, SearchTarget.Bot… in InternalEnumerateFileSystemInfos()
H A DFileSystem.Windows.cs202 …public static IEnumerable<FileSystemInfo> EnumerateFileSystemInfos(string fullPath, string searchP… in EnumerateFileSystemInfos() method in System.IO.FileSystem
H A DFileSystem.Unix.cs452 …public static IEnumerable<FileSystemInfo> EnumerateFileSystemInfos(string fullPath, string searchP… in EnumerateFileSystemInfos() method in System.IO.FileSystem
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.IO/
H A DDirectoryInfo.cs409 public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos () in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
411 return EnumerateFileSystemInfos ("*", SearchOption.TopDirectoryOnly); in EnumerateFileSystemInfos()
414 public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos (string searchPattern) in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
416 return EnumerateFileSystemInfos (searchPattern, SearchOption.TopDirectoryOnly); in EnumerateFileSystemInfos()
419 …public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos (string searchPattern, SearchOption se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
426 return EnumerateFileSystemInfos (FullPath, searchPattern, searchOption); in EnumerateFileSystemInfos()
429 …static internal IEnumerable<FileSystemInfo> EnumerateFileSystemInfos (string basePath, string sear… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
473 … foreach (FileSystemInfo child in EnumerateFileSystemInfos (fullPath, searchPattern, searchOption)) in EnumerateFileSystemInfos()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Internal/
H A DWindowsCompatibilityExtensions.cs51 … (FileSystemInfo e in new DirectoryInfo (dir.Length > 0 ? dir : ".").EnumerateFileSystemInfos ()) { in FindMatchingPath()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/tests/Base/
H A DInfoGetSetAttributes.cs55 … FileSystemInfo info = new DirectoryInfo(TestDirectory).EnumerateFileSystemInfos().First(); in GetAttributes_DeleteAfterEnumerate()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/windows/
H A Dwin_owner.ps144 $files = $file.EnumerateFileSystemInfos("*", [System.IO.SearchOption]::AllDirectories)
H A Dwin_find.ps1303 $dir_files = $dir.EnumerateFileSystemInfos("*", [System.IO.SearchOption]::TopDirectoryOnly) in Get-FilesInFolder()
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/ansible/windows/plugins/modules/
H A Dwin_owner.ps144 $files = $file.EnumerateFileSystemInfos("*", [System.IO.SearchOption]::AllDirectories)
H A Dwin_find.ps1213 … $dir_files = $dir_obj.EnumerateFileSystemInfos("*", [System.IO.SearchOption]::TopDirectoryOnly) in Search-Path()
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/windows/plugins/modules/
H A Dwin_file_compression.ps182 … $entries_to_check = $item.EnumerateFileSystemInfos("*", [System.IO.SearchOption]::AllDirectories)
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/ref/
H A DSystem.IO.FileSystem.cs75 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
76 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
77 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/io/
H A Ddirectoryinfo.cs556 public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos() in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
563 public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos(String searchPattern) in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
574 …public IEnumerable<FileSystemInfo> EnumerateFileSystemInfos(String searchPattern, SearchOption sea… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression.ZipFile/src/System/IO/Compression/
H A DZipFile.cs605 … foreach (FileSystemInfo file in di.EnumerateFileSystemInfos("*", SearchOption.AllDirectories)) in DoCreateFromDirectory()
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/support/windows-integration/plugins/modules/
H A Dwin_find.ps1208 … $dir_files = $dir_obj.EnumerateFileSystemInfos("*", [System.IO.SearchOption]::TopDirectoryOnly)
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/windows-integration/plugins/modules/
H A Dwin_find.ps1208 … $dir_files = $dir_obj.EnumerateFileSystemInfos("*", [System.IO.SearchOption]::TopDirectoryOnly)
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.IO/
H A DDirectoryInfoTest.cs1071 foreach (var info in dirInfo.EnumerateFileSystemInfos ("*", SearchOption.AllDirectories)) in EnumerateFileSystemInfosTest()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A Dmscorlib.cs7790 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
7791 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
7792 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A Dmscorlib.cs8553 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8554 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8555 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A Dmscorlib.cs8553 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8554 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8555 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.1/
H A Dmscorlib.cs8374 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8375 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8376 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A Dmscorlib.cs8780 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8781 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8782 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A Dmscorlib.cs8880 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8881 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8882 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A Dmscorlib.cs8374 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos() { throw… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8375 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo
8376 …ystem.Collections.Generic.IEnumerable<System.IO.FileSystemInfo> EnumerateFileSystemInfos(string se… in EnumerateFileSystemInfos() method in System.IO.DirectoryInfo

12