Jump to content

DosMove (FAPI): Difference between revisions

From EDM2
Created page with "==Description== This call moves a file object to another location and changes its name. ==Syntax== <PRE> DosMove (OldPathName, NewPathName, Reserved) </PRE> ==Paramete..."
 
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
==Description==
This call moves a file object to another location and changes its name.  
This call moves a file object to another location and changes its name.  


==Syntax==
==Syntax==
<PRE>
  DosMove (OldPathName, NewPathName, Reserved)
  DosMove


    (OldPathName, NewPathName, Reserved)
</PRE>
==Parameters==
==Parameters==
; OldPathName (PSZ) - input : Address of the old path name of the file to be moved.  
;OldPathName (PSZ) - input : Address of the old path name of the file to be moved.
 
;NewPathName (PSZ) - input : Address of the new path name of the file.
; NewPathName (PSZ) - input : Address of the new path name of the file.  
;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
Return code descriptions are:
Return code descriptions are:
 
*0   NO_ERROR
*0     NO_ERROR
* 2   ERROR_FILE_NOT_FOUND  
* 2       ERROR_FILE_NOT_FOUND  
* 3   ERROR_PATH_NOT_FOUND  
* 3       ERROR_PATH_NOT_FOUND  
* 5   ERROR_ACCESS_DENIED  
* 5       ERROR_ACCESS_DENIED  
* 17   ERROR_NOT_SAME_DEVICE  
* 17       ERROR_NOT_SAME_DEVICE  
* 26   ERROR_NOT_DOS_DISK  
* 26       ERROR_NOT_DOS_DISK  
* 32   ERROR_SHARING_VIOLATION  
* 32       ERROR_SHARING_VIOLATION  
* 36   ERROR_SHARING_BUFFER_EXCEEDED  
* 36       ERROR_SHARING_BUFFER_EXCEEDED  
* 87   ERROR_INVALID_PARAMETER  
* 87       ERROR_INVALID_PARAMETER  
* 108   ERROR_DRIVE_LOCKED  
* 108       ERROR_DRIVE_LOCKED  
* 206   ERROR_FILENAME_EXCED_RANGE  
* 206       ERROR_FILENAME_EXCED_RANGE  
* 250   ERROR_CIRCULARITY_REQUESTED  
* 250       ERROR_CIRCULARITY_REQUESTED  
* 251   ERROR_DIRECTORY_IN_CDS
* 251       ERROR_DIRECTORY_IN_CDS


==Remarks==
==Remarks==
Line 46: Line 38:


DosMove can be used to change the case of a file on an FSD drive. The following example would change the name of the file to "File.Txt".
DosMove can be used to change the case of a file on an FSD drive. The following example would change the name of the file to "File.Txt".
  DosMove("file.txt","File.Txt")
  DosMove("file.txt","File.Txt")


===Family API Considerations===
===Family API Considerations===
Some options operate differently in the DOS mode than in the OS/2 mode. Therefore, the following restriction applies to DosMove when coding for the DOS mode:
Some options operate differently in the DOS mode than in the OS/2 mode. Therefore, the following restriction applies to DosMove when coding for the DOS mode:


File names passed to OldPathName and NewPathName are truncated by the system in the DOS mode only. The application must truncate all files passed to OldPathName and NewPathName in the OS/2 mode or an error code is returned.
File names passed to OldPathName and NewPathName are truncated by the system in the DOS mode only. The application must truncate all files passed to OldPathName and NewPathName in the OS/2 mode or an error code is returned.


==Example Code==
==Example Code==
Line 70: Line 57:


USHORT          rc;            /* return code */
USHORT          rc;            /* return code */
</PRE>
</PRE>


Line 89: Line 74:
*  
*  


[[Category:The OS/2 API Project]]
[[Category:Dos]]

Revision as of 17:12, 28 February 2017

This call moves a file object to another location and changes its name.

Syntax

DosMove (OldPathName, NewPathName, Reserved)

Parameters

OldPathName (PSZ) - input
Address of the old path name of the file to be moved.
NewPathName (PSZ) - input
Address of the new path name of the file.
Reserved (ULONG) - input
Reserved and must be set to zero.

Return Code

rc (USHORT) - return

Return code descriptions are:

  • 0 NO_ERROR
  • 2 ERROR_FILE_NOT_FOUND
  • 3 ERROR_PATH_NOT_FOUND
  • 5 ERROR_ACCESS_DENIED
  • 17 ERROR_NOT_SAME_DEVICE
  • 26 ERROR_NOT_DOS_DISK
  • 32 ERROR_SHARING_VIOLATION
  • 36 ERROR_SHARING_BUFFER_EXCEEDED
  • 87 ERROR_INVALID_PARAMETER
  • 108 ERROR_DRIVE_LOCKED
  • 206 ERROR_FILENAME_EXCED_RANGE
  • 250 ERROR_CIRCULARITY_REQUESTED
  • 251 ERROR_DIRECTORY_IN_CDS

Remarks

This call is often used to change only the name of a file or subdirectory, allowing the file object to remain in the same subdirectory. Global file name characters are not allowed in the source or target name.

If the paths specified are different, this allows the subdirectory location of the file object to be changed as well. If a drive is specified for the target, it must be the same as the one specified or implied by the source.

Any attempts to move a parent subdirectory to one of its descendant subdirectories are rejected, because a subdirectory cannot be both an ancestor and a descendant of the the same subdirectory. Any attempts by a process to move the current subdirectory or any of its ancestors are also rejected.

Attributes (times and dates) of the source file object are moved to the target. If read-only files exist in the target path, they are not replaced.

DosQSysInfo is called during initialization by an application to determine the maximum path length allowed by OS/2.

DosMove can be used to change the case of a file on an FSD drive. The following example would change the name of the file to "File.Txt".

DosMove("file.txt","File.Txt")

Family API Considerations

Some options operate differently in the DOS mode than in the OS/2 mode. Therefore, the following restriction applies to DosMove when coding for the DOS mode:

File names passed to OldPathName and NewPathName are truncated by the system in the DOS mode only. The application must truncate all files passed to OldPathName and NewPathName in the OS/2 mode or an error code is returned.

Example Code

C Binding

#define INCL_DOSFILEMGR

USHORT  rc = DosMove(OldPathName, NewPathName, Reserved);

PSZ              OldPathName;   /* Old path name string */
PSZ              NewPathName;   /* New path name string */
ULONG            0;             /* Reserved (must be zero) */

USHORT           rc;            /* return code */

MASM Binding

EXTRN  DosMove:FAR
INCL_DOSFILEMGR     EQU 1

PUSH@  ASCIIZ  OldPathName   ;Old path name string
PUSH@  ASCIIZ  NewPathName   ;New path name string
PUSH   DWORD   0             ;Reserved (must be zero)
CALL   DosMove

Returns WORD

Related Functions