 Object Menu
|

| ShortPath |
| Type | Read-Only Property |
| Return Value Type | String |
| Usage | object.ShortPath(Folder) |
| Description | Determines the ISO9660 path of the folder. This is the path 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.ShortPathResult: c:\test\testag~1 |
|