Table of Contents

This is part of Family API which allow to create dual-os version of program runs under OS/2 and DOS

Note: This is legacy API call. It is recommended to use 32-bit equivalent

2021/09/17 04:47 · prokushev · 0 Comments
2021/08/20 03:18 · prokushev · 0 Comments

DosQCurDir

This call returns the full path name of the current directory for the requesting process for the specified drive.

Syntax

DosQCurDir (DriveNumber, DirPath, DirPathLen)

Parameters

Value Definition
0     default
1     A 
2     B
...

Return Code

rc (USHORT) - return

Return code descriptions are:

Remarks

The drive letter is not part of the returned string. The string does not begin with a backslash and is terminated by a byte containing 00H.

The system returns the length of the returned DirPath string in DirPathLen, which does not include the terminating null byte. In the case where the DirPath buffer is of insufficient length to hold the current directory path string, the system returns the required length (in bytes) for DirPath in DirPathLen.

For FSDs, the case of the current directory is set according to the DirName passed in, not according to the case of the directories on disk. For example, if the directory “c:\bin” is created and DosChDir is called with DirName “c:\bin”, the current directory returned by DosQCurDir will be “c:\bin”.

Programs running without the NEWFILES bit set are allowed to DosChDir to a non-8.3 filename format directory.

DosQSysInfo must be used by an application to determine the maximum path length supported by OS/2. The returned value should be used to dynamically allocate buffers that are to be used to store paths.

Bindings

C Binding

#define INCL_DOSFILEMGR
 
USHORT  rc = DosQCurDir(DriveNumber, DirPath, DirPathLen);
 
USHORT  DriveNumber;   /* Drive number */
PBYTE   DirPath;       /* Directory path buffer (returned) */
PUSHORT DirPathLen;    /* Directory path buffer length (returned) */
 
USHORT  rc;            /* return code */

MASM Binding

EXTRN  DosQCurDir:FAR
INCL_DOSFILEMGR     EQU 1
 
PUSH   WORD    DriveNumber   ;Drive number
PUSH@  OTHER   DirPath       ;Directory path buffer (returned)
PUSH@  WORD    DirPathLen    ;Directory path buffer length (returned)
CALL   DosQCurDir

Returns WORD

Note

Text based on http://www.edm2.com/index.php/DosQCurDir