Macromedia dreamweaver 8-extending dreamweaver 사용자 설명서

다운로드
페이지 504
File Access and Multiuser Configuration API
477
Example 
char *dwConfig = "file:///c|/
P
rogram Files/Macromedia/Dreamweaver/
Configuration/Extensions.txt";
unsigned long attrs;
attrs = (MM_FILEATTR_NORMAL | MM_FILEATTR_RDONLY);
int fileno = 0;
if(MM_SetConfigFileAttrs(dwConfig, attrs))
{
fileno = MM_OpenConfigFile(dwConfig);
}
JSBool MM_CreateConfigFolder()
Availability
Dreamweaver MX.
Description
This function creates a folder in the specified location.
If the 
fileURL
 argument specifies a folder within the Dreamweaver Configuration folder, the 
function creates the folder in the user Configuration folder. If 
fileURL
 does not specify a 
folder in the Dreamweaver Configuration folder, the function creates the specified folder, 
including all higher-level folders in the path if they do not already exist. 
Arguments
char *fileURL
The 
char *fileURL
 argument is a pointer to a file:// URL string that names the 
configuration folder that you want to create. 
Returns
A Boolean value: 
JS_TRUE
 indicates success; 
JS_FALSE
 indicates failure.
Example 
char *dwConfig = "file:///c|/
P
rogram Files\Macromedia\Dreamweaver   
\Configuration\Extensions.txt";
MM_CreateConfigFolder(dwConfig);