DWfile.copy()
Availability
Dreamweaver 3.
Description
This function copies the specified file to a new location.
Arguments
,
originalURL
copyURL
•
The
originalURL
•
The
copyURL
save the copied file.
Returns
A Boolean value:
Example
The following code copies a file called myconfig.cfg to myconfig_backup.cfg:
var fileURL = "file:///c|/Config/myconfig.cfg";
var newURL ="file:///c|/Config/myconfig_backup.cfg";
DWfile.copy(fileURL, newURL);
DWfile.createFolder()
Availability
Dreamweaver 2.
Description
This function creates a folder at the specified location.
Arguments
folderURL
•
The
folderURL
want to create.
Returns
A Boolean value:
Example
The following code tries to create a folder called tempFolder at the top level of the C drive and
displays an alert box that indicates whether the operation was successful:
var folderURL = "file:///c|/tempFolder";
if (DWfile.createFolder(folderURL)){
alert("Created " + folderURL);
}else{
alert("Unable to create " + folderURL);
}
34
Chapter 2: The File I/O API
argument, which is expressed as a file:// URL, is the file you want to copy.
argument, which is expressed as a file:// URL, is the location where you want to
if the copy succeeds;
true
argument, which is expressed as a file:// URL, is the location of the folder you
if the folder is created successfully;
true
otherwise.
false
otherwise.
false
Need help?
Do you have a question about the DREAMWEAVER MX 2004-DREAMWEAVER API and is the answer not in the manual?