DOS 8.3 Filenames |
Previous Top Next |
· | If file exists on the real filesystem: |
GetShortPathName("C:\Documents and Settings\Subdirectory\File") |
return value = "C:\Docum~1\Subdir~1\File" |
OpenFile("C:\Documents and Settings\Subdirectory") -> Success |
OpenFile("C:\Docum~1\Subdir~1") -> Success |
· | If file exists on the virtual filesystem: |
GetShortPathName("C:\Documents and Settings\Subdirectory\File") |
return value = "C:\Documents and Settings\Subdirectory\File" |
OpenFile("C:\Documents and Settings\Subdirectory\File") -> Success |
OpenFile("C:\Docum~1\Subdir~1\File") -> Fail |