Use SYS(2027) to Return Platform-Specific Path for FPU

Last reviewed: August 28, 1995
Article ID: Q120949
The information in this article applies to:
  • Microsoft FoxPro for UNIX, version 2.6

SUMMARY

FoxPro for UNIX returns paths in MS-DOS fashion instead of UNIX or XENIX fashion. To return a UNIX or XENIX-style path, use the SYS(2027) function.

MORE INFORMATION

The syntax for SYS(2027) is

   SYS(2027,<expC>)

where <expC> is a character expression.

To illustrate the difference, type "?SYS(2004)" (without the quotation marks) in the Command window to return the FoxPro startup directory. If FoxPro is installed in the default directory of /usr/lib/foxpro, SYS(2004) will return C:\USR\LIB\FOXPRO\.

To return /usr/lib/foxpro instead, type the following in the Command window:

   ?SYS(2027,SYS(2004))

REFERENCES

FoxPro for UNIX online help


Additional reference words: FoxUnix 2.60 conversion path
KBCategory: kbprg
KBSubcategory:


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 28, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.