Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== MAKEDIR Method (FileSystem) ====== ==== Description ==== Creates a new directory at the specified location. ==== Syntax ==== <code> SuccessFlag = Exec_Method( "FILESYSTEM", "MAKEDIR", DirName, RecurseFlag ) </code> ==== Parameters ==== ^Name^Required^Description^ |DirName|Yes|Specifies the path of the directory to create.| |RecurseFlag|No|If TRUE$ then recurse to create any subdirectories as needed. Defaults to FALSE$| ==== Returns ==== TRUE$ if the directory was created successfully (or already exists), or FALSE$ an error occurred. The FILEOPRESULT property may be used to obtain more details regarding the failure. ==== Remarks ==== N/A ==== Example ==== <code> // Use the FILESYSTEM MAKEDIR method to create a directory DirName = "c:\my_data\aug_2017" If Exec_Method( "FILESYSTEM", "MAKEDIR", DirName ) Then // It's there - Process the directory ... End </code> ==== See Also ==== N/A guides/oi10/presentation_server/makedir_method_filesystem.txt Last modified: 2023/10/25 10:49by 127.0.0.1