Lua
C++
Edit

StripDir

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

Syntax

Parameter Description
path full file path

Returns

Returns the file path with the folder removed.

Example

#include "UltraEngine.h"

using namespace UltraEngine;

int main(int argc, const char* argv[])
{
    WString 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));
    return 0;
}
Copyright © 2024 Ultra Software.
All rights reserved.