 Object Menu
|

| ShortName |
| Type | Read-Only Property |
| Return Value Type | String |
| Usage | object.ShortName(FileName) |
| Description | Determines the ISO9660 filename of the file. This is the name the file would have under an old MS-DOS FAT16 convention. |
| Example | Code: filename="c:\test\testthisfile.htm" Set fso = CreateObject("Scripting.FileSystemObject") set mainfile=fso.GetFile(filename) response.write mainfile.ShortNameResult: testth~1.htm |
|