System.IO.Path.GetFileNameWithoutExtension 方法

方法描述

返回不具有扩展名的指定路径字符串的文件名。

语法定义(C# System.IO.Path.GetFileNameWithoutExtension 方法 的用法)

public static string GetFileNameWithoutExtension(
	string path
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
path System-String 文件的路径。
返回值 System.String GetFileName 返回的字符串,但不包括最后的句点 (.) 以及之后的所有字符。

提示和注释

此方法不验证路径或文件名是否存在。

有关通用 I/O 任务的列表,请参见通用 I/O 任务。

System.IO.Path.GetFileNameWithoutExtension 方法例子

下面的代码示例演示 GetFileNameWithoutExtension 方法的用法。

string fileName = @"C:\mydir\myfile.ext";
string path = @"C:\mydir\";
string result;

result = Path.GetFileNameWithoutExtension(fileName);
Console.WriteLine("GetFileNameWithoutExtension('{0}') returns '{1}'", 
    fileName, result);

result = Path.GetFileName(path);
Console.WriteLine("GetFileName('{0}') returns '{1}'", 
    path, result);

// This code produces output similar to the following:
//
// GetFileNameWithoutExtension('C:\mydir\myfile.ext') returns 'myfile'
// GetFileName('C:\mydir\') returns ''

异常

异常 异常描述
ArgumentException path 包含 GetInvalidPathChars 中已定义的一个或多个无效字符。

命名空间

namespace: System.IO

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。