|
|
|
|
|
- Creating a directory
- Creating a directory
// Declare the variables DirectoryToCreate is string ResCreate is boolean // Select the directory to create DirectoryToCreate = "C:\MyDirectory" // Create the directory ResCreate = fMakeDir(DirectoryToCreate) // Display an error message if the creation was not performed IF ResCreate = False THEN Error(ErrorInfo(errMessage)) ELSE Info("The directory was created") END
// Declare the variables DirectoryToCreate is string ResCreate is boolean // Select the directory to create DirectoryToCreate = fSelectDir("", "Select the directory to create") // Create the directory ResCreate = fMakeDir(DirectoryToCreate) // Display an error message if the creation was not performed IF ResCreate = False THEN Error(ErrorInfo(errMessage)) ELSE Info("The directory was created") END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|