Click or drag to resize
PathGetFileNameWithoutExtension Method (String, Boolean)
[AlphaFS] Returns the file name of the specified path string without the extension.

Namespace: Alphaleonis.Win32.Filesystem
Assembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public static string GetFileNameWithoutExtension(
	string path,
	bool checkInvalidPathChars
)

Parameters

path
Type: SystemString
The path of the file. The path cannot contain any of the characters defined in GetInvalidPathChars.
checkInvalidPathChars
Type: SystemBoolean
will check path for invalid path characters.

Return Value

Type: String
The string returned by GetFileName, minus the last period (.) and all characters following it.
Exceptions
ExceptionCondition
ArgumentExceptionThe path parameter contains invalid characters, is empty, or contains only white spaces.
See Also