You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TruePath.SystemIo/PathIo.cs
+51Lines changed: 51 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -771,4 +771,55 @@ public static class PathIo
771
771
/// <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or should include all subdirectories.</param>
772
772
/// <returns>An array of the full names (including paths) for the subdirectories in the specified directory that match the specified search pattern and option.</returns>
/// Returns an enumerable collection of <see cref="AbsolutePath"/> of full file names in a specified path.
777
+
/// </summary>
778
+
/// <param name="path">The directory to search.</param>
779
+
/// <returns>An enumerable collection of <see cref="AbsolutePath"/> of the full names (including paths) for the files in the specified directory that match the specified search pattern.</returns>
/// Returns an enumerable collection of <see cref="AbsolutePath"/> of full file names in a specified path.
788
+
/// </summary>
789
+
/// <param name="path">The directory to search.</param>
790
+
/// <param name="searchPattern">The search string to match against the names of files in <paramref name="path"/>.</param>
791
+
/// <returns>An enumerable collection of <see cref="AbsolutePath"/> of the full names (including paths) for the files in the specified directory that match the specified search pattern.</returns>
/// Returns an enumerable collection of <see cref="AbsolutePath"/> of the names of files (including their paths) that match the specified search pattern and enumeration options in the specified directory.
801
+
/// </summary>
802
+
/// <param name="path">The directory to search.</param>
803
+
/// <param name="searchPattern">The search string to match against the names of files in <paramref name="path"/>.</param>
804
+
/// <param name="enumerationOptions">An object that contains the search options to use.</param>
805
+
/// <returns>An enumerable collection of <see cref="AbsolutePath"/> of the full names (including paths) for the files in the specified directory that match the specified search pattern and enumeration options.</returns>
/// Returns an enumerable collection of <see cref="AbsolutePath"/> with the names of files (including their paths) that match the specified search pattern in the specified directory, using a value to determine whether to search subdirectories.
815
+
/// </summary>
816
+
/// <param name="path">The directory to search.</param>
817
+
/// <param name="searchPattern">The search string to match against the names of files in <paramref name="path"/>.</param>
818
+
/// <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or should include all subdirectories.</param>
819
+
/// <returns>An enumerable collection of <see cref="AbsolutePath"/> of the full names (including paths) for the files in the specified directory that match the specified search pattern.</returns>
0 commit comments