Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:docs:fapi:dosmkdir [2018/08/28 02:11] – prokushev | en:docs:fapi:dosmkdir [2021/12/05 10:02] (current) – prokushev | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{logos:os2.gif? | + | {{page>en:templates:fapiint}} |
====== DosMkDir ====== | ====== DosMkDir ====== | ||
This call creates a subdirectory. | This call creates a subdirectory. | ||
- | ==Syntax== | + | ===== Syntax ===== |
- | | + | |
- | ==Parameters== | + | <code c> |
- | ;DirName (PSZ) - input : Address of the ASCIIZ directory path name, which may or may not include a drive specification. If no drive is specified, the current drive is assumed. | + | DosMkDir (DirName, Reserved) |
- | :DosQSysInfo is called by an application during initialization to determine the maximum path length allowed by OS/2. | + | </ |
- | ; Reserved (ULONG) - input : Reserved and must be set to zero. | + | |
+ | ===== Parameters ===== | ||
+ | |||
+ | |||
+ | | ||
+ | |||
+ | [[DosQSysInfo]] is called by an application during initialization to determine the maximum path length allowed by OS/2. | ||
+ | |||
+ | *Reserved ([[ULONG]]) - input : Reserved and must be set to zero. | ||
+ | |||
+ | ===== Return Code ===== | ||
+ | |||
+ | rc ([[USHORT]]) - return | ||
- | ==Return Code== | ||
- | rc (USHORT) - return | ||
Return code descriptions are: | Return code descriptions are: | ||
- | * 0 NO_ERROR | ||
- | * 3 ERROR_PATH_NOT_FOUND | ||
- | * 5 ERROR_ACCESS_DENIED | ||
- | * 26 | ||
- | * 87 | ||
- | * 108 ERROR_DRIVE_LOCKED | ||
- | * 206 ERROR_FILENAME_EXCED_RANGE | ||
- | ==Remarks== | + | * 0 NO_ERROR |
+ | * 3 ERROR_PATH_NOT_FOUND | ||
+ | * 5 ERROR_ACCESS_DENIED | ||
+ | * 26 | ||
+ | * 87 | ||
+ | * 108 ERROR_DRIVE_LOCKED | ||
+ | * 206 ERROR_FILENAME_EXCED_RANGE | ||
+ | |||
+ | ===== Remarks ===== | ||
If any subdirectory names in the path do not exist, the subdirectory is not created. Upon return, a subdirectory is created at the end of the specified path. | If any subdirectory names in the path do not exist, the subdirectory is not created. Upon return, a subdirectory is created at the end of the specified path. | ||
- | 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. |
If a program running with the NEWFILES bit set tries to create a directory with blanks immediately preceding the dot on a FAT drive, the system rejects the name. For example, if c: is a FAT drive, the name "file .txt" is rejected and the name " | If a program running with the NEWFILES bit set tries to create a directory with blanks immediately preceding the dot on a FAT drive, the system rejects the name. For example, if c: is a FAT drive, the name "file .txt" is rejected and the name " | ||
- | ==Example Code== | + | ===== Example Code ===== |
- | === C Binding=== | + | |
- | < | + | |
- | #define INCL_DOSFILEMGR | + | |
- | USHORT | + | ==== C Binding ==== |
- | PSZ DirName; | + | <code c> |
- | ULONG 0; /* Reserved (must be zero) */ | + | #define INCL_DOSFILEMGR |
+ | |||
+ | USHORT | ||
+ | |||
+ | | ||
+ | ULONG 0; /* Reserved (must be zero) */ | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
- | USHORT | + | ==== MASM Binding ==== |
- | </ | + | |
- | ===MASM Binding=== | + | <code asm> |
- | <PRE> | + | EXTRN DosMkDir: |
- | EXTRN DosMkDir: | + | INCL_DOSFILEMGR |
- | INCL_DOSFILEMGR | + | |
- | + | PUSH@ ASCIIZ | |
- | PUSH@ ASCIIZ | + | PUSH |
- | PUSH | + | CALL |
- | CALL | + | </ |
Returns WORD | Returns WORD | ||
- | </ | ||
- | === Note === | + | ===== Note ===== |
Text based on http:// | Text based on http:// |