Member of the support class.
[c, d, e, f] = fileparts(a)
Returns the path, name, extension, and version of a given file.
| Name | Description |
| a | Specifies a filename. a is a string. |
| Name | Description |
| c | Returns the path of a. c is a string. |
| d | Returns the name of a. d is a string. |
| e | Returns the extension of a. e is a string. |
| f | Returns the version of a. f is a string. |
[C, D, E, F] = fileparts('C:\pathname\filename.extension')