Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:docs:fapi:doschdir [2020/12/07 01:51] – prokushev | en:docs:fapi:doschdir [2021/09/17 03:42] (current) – prokushev | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{logos:os2.gif? | + | {{page>en:templates:fapiint}} |
====== DosChDir ====== | ====== DosChDir ====== | ||
This call defines the current directory for the requesting process. | This call defines the current directory for the requesting process. | ||
- | ==Syntax== | + | ===== Syntax |
- | | + | <code c> |
+ | DosChDir (DirName, Reserved) | ||
+ | </ | ||
+ | |||
+ | ===== Parameters ===== | ||
- | ==Parameters== | ||
*DirName ([[PSZ]]) - input : Address of the ASCIIZ directory path name. | *DirName ([[PSZ]]) - input : Address of the ASCIIZ directory path name. | ||
*Reserved ([[ULONG]]) - input : Reserved and must be set to zero. | *Reserved ([[ULONG]]) - input : Reserved and must be set to zero. | ||
- | ==Return Code== | + | ===== Return Code ===== |
rc ([[USHORT]]) - return | rc ([[USHORT]]) - return | ||
Line 28: | Line 32: | ||
* 206 ERROR_FILENAME_EXCED_RANGE | * 206 ERROR_FILENAME_EXCED_RANGE | ||
- | ==Remarks== | + | ===== Remarks ===== |
The directory path is not changed if any member of the path does not exist. The current directory changes only for the requesting process. | The directory path is not changed if any member of the path does not exist. The current directory changes only for the requesting process. | ||
- | 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 " | + | 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 " |
Programs running without the NEWFILES bit set are allowed to DosChDir to a non-8.3 filename format directory. | 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. | + | [[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. |
+ | |||
+ | ===== Example Code ===== | ||
+ | |||
+ | ==== C Binding ==== | ||
- | ==Example Code== | ||
- | ===C Binding=== | ||
<code c> | <code c> | ||
#define INCL_DOSFILEMGR | #define INCL_DOSFILEMGR | ||
Line 45: | Line 52: | ||
USHORT | USHORT | ||
- | PSZ DirName; | + | PSZ DirName; |
ULONG 0; /* Reserved (must be zero) */ | ULONG 0; /* Reserved (must be zero) */ | ||
Line 62: | Line 69: | ||
</ | </ | ||
- | ===MASM Binding=== | + | |
+ | ==== MASM Binding ==== | ||
+ | |||
<code asm> | <code asm> | ||
EXTRN DosChDir: | EXTRN DosChDir: | ||
Line 74: | Line 84: | ||
Returns WORD | Returns WORD | ||
- | === Note === | + | ===== Note ===== |
Text based on http:// | Text based on http:// |