Lua
C++
Edit

StripExt

This function removes the file extension part from a file path and returns the result.

Syntax

Parameter Description
path full file path

Returns

Returns the file path with the extension removed.

Example

path = "C:/Windows/explorer.exe"

Print("Full path: " .. path)
Print("File name: " .. StripDir(path))
Print("File directory: " .. ExtractDir(path))
Print("File extension: " .. ExtractExt(path))
Print("File name without extension: " .. StripAll(path))
Print("File path without extension: " .. StripExt(path))
Copyright © 2024 Ultra Software.
All rights reserved.