forked from haoduotnt/aspnetwebstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPathHelpers.cs
29 lines (26 loc) · 995 Bytes
/
PathHelpers.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
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.Diagnostics.Contracts;
namespace System.Web
{
/// <summary>
/// Helpers for working with IO paths.
/// </summary>
internal static class PathHelpers
{
/// <summary>
/// Returns whether the path has the specified file extension.
/// </summary>
public static bool EndsWithExtension(string path, string extension)
{
Contract.Assert(path != null);
Contract.Assert(extension != null && extension.Length > 0);
if (path.EndsWith(extension, StringComparison.OrdinalIgnoreCase))
{
int extensionLength = extension.Length;
int pathLength = path.Length;
return (pathLength > extensionLength && path[pathLength - extensionLength - 1] == '.');
}
return false;
}
}
}