Path.EndsInDirectorySeparator Method

Definition

Overloads

EndsInDirectorySeparator(ReadOnlySpan<Char>)

Returns a value that indicates whether the path, specified as a read-only span, ends in a directory separator.

EndsInDirectorySeparator(String)

Returns a value that indicates whether the specified path ends in a directory separator.

EndsInDirectorySeparator(ReadOnlySpan<Char>)

Source:
Path.cs
Source:
Path.cs
Source:
Path.cs

Returns a value that indicates whether the path, specified as a read-only span, ends in a directory separator.

C#
public static bool EndsInDirectorySeparator(ReadOnlySpan<char> path);

Parameters

path
ReadOnlySpan<Char>

The path to analyze.

Returns

true if the path ends in a directory separator; otherwise, false.

Applies to

.NET 9 and other versions
Product Versions
.NET Core 3.0, Core 3.1, 5, 6, 7, 8, 9

EndsInDirectorySeparator(String)

Source:
Path.cs
Source:
Path.cs
Source:
Path.cs

Returns a value that indicates whether the specified path ends in a directory separator.

C#
public static bool EndsInDirectorySeparator(string path);
C#
public static bool EndsInDirectorySeparator(string? path);

Parameters

path
String

The path to analyze.

Returns

true if the path ends in a directory separator; otherwise, false.

Applies to

.NET 9 and other versions
Product Versions
.NET Core 3.0, Core 3.1, 5, 6, 7, 8, 9