AI Notice: Most documentation right now was auto-generated by an LLM. Handwritten documentation will be implemented over time on the road to 1.0
FileUtilsAPI
File utilities API
Signature
interface FileUtilsAPI {
getExtension(filename: string): string;
getBasename(path: string): string;
getDirname(path: string): string;
joinPath(...parts: string[]): string;
}Members
| Name | Type | Required | Description |
|---|---|---|---|
getExtension | (filename: string) => string | yes | — |
getBasename | (path: string) => string | yes | — |
getDirname | (path: string) => string | yes | — |
joinPath | (parts: string[]) => string | yes | — |