 Object Menu
|

| ShortName |
| Type | Read-Only Property |
| Return Value Type | String |
| Usage | object.ShortName(Folder) |
| Description | Determines the ISO9660 foldername of the folder. This is the name the folder would have under an old MS-DOS FAT16 convention. |
| Example | Code: directoryname="c:\test\testagain" Set fso = CreateObject("Scripting.FileSystemObject") set mainfolder=fso.GetFolder(directoryname) response.write mainfolder.ShortNameResult: testag~1 |
|