name: Filename : public String

synopsis:

g++ [flags ...] file ...

#include <Filename.h>

Filename(const Filename& arg);
boolean transformUniquely();
boolean getBase(String& base) const;
boolean getExt(String& ext) const;
boolean makeTemp();
boolean makeTemp(const String& basename);
quick start:
String extension;

// declare the filename
//
Filename filename;
filename.assign(L"image.jpg");

// get the extension of the filename
//
filename.getExt(extension);
description:

The Filename class provides the facility to transform files and rename files. This class also helps in creating temporary file names and to find the required information about the file.

dependencies:

public constants: error codes:

protected data:

required public methods:

class-specific public methods:

private methods: examples:

notes: