| 4D v13.4COPY DOCUMENT | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 
 | 
    4D v13.4
 COPY DOCUMENT 
         | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| COPY DOCUMENT ( sourceName ; destinationName {; *} ) | ||||||||
| Parameter | Type | Description | ||||||
| sourceName | String |   | Pathname of file or folder to be copied | |||||
| destinationName | String |   | Name or pathname of copied file or folder | |||||
| * | Operator |   | Override existing document if any | |||||
The COPY DOCUMENT command copies the file or folder specified by sourceName to the location specified by destinationName.
Note that you can pass a file in the sourceName parameter and a folder in the destinationName parameter, in order to copy a file into a folder.
The following example duplicates a document in its own folder:
 COPY DOCUMENT("C:\\FOLDER\\DocName";"C:\\FOLDER\\DocName2")The following example copies a document to the database folder (provided C:\\FOLDER is not the database folder):
 COPY DOCUMENT("C:\\FOLDER\\DocName";"DocName")The following example copies a document from one volume to another one:
 COPY DOCUMENT("C:\\FOLDER\\DocName";"F:\\Archives\\DocName.OLD")The following example duplicates a document in its own folder overriding an already existing copy:
 COPY DOCUMENT("C:\\FOLDER\\DocName";"C:\\FOLDER\\DocName2";*)Copying a file into a specific folder while keeping the same name:
 COPY DOCUMENT("C:\\Projects\\DocName";"C:\\Projects\\")Copying a file into a specific folder while keeping the same name and overriding the existing document:
 COPY DOCUMENT("C:\\Projects\\DocName";"C:\\Projects\\"; *)Copying a folder into another folder (both folders must already be present on the disk):
 COPY DOCUMENT("C:\\Projects\\";"C\\Archives\\2011\\")
	Product:  4D
	Theme:  System Documents
	Number:  
        541
        
        
        
	
        
        
 
        

	Created:  4D v6
	Modified:  4D v13