home *** CD-ROM | disk | FTP | other *** search
- global gOpSys -- the local operating system
-
-
- on getCDdrive
-
- set wholePath = the pathName
-
- set saveDelim = the itemDelimiter
-
- if the machineType = 256 then
- set the itemDelimiter = "\"
- set CDdrive = item 1 of wholePath & "\"
- else
- set the itemDelimiter = ":"
- set CDdrive = item 1 of wholePath & ":"
- end if
-
- set the itemDelimiter = saveDelim
-
- return CDdrive
-
- end getCDdrive
-
-
- on getSYSdrive
-
- set wholePath = findPath()
-
- set saveDelim = the itemDelimiter
-
- if the machineType = 256 then
- set the itemDelimiter = "\"
- set SYSdrive = item 1 of wholePath & "\"
- else
- set the itemDelimiter = ":"
- set SYSdrive = item 1 of wholePath & ":"
- end if
-
- set the itemDelimiter = saveDelim
-
- return SYSdrive
-
- end getSYSdrive