ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / External file functions
  • Operating mode in Windows Vista (and later)
  • Previous versions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Creates a directory (and the intermediate directories if necessary).
WINDEVWEBDEV - Server codeReports and QueriesJavaUser code (UMC)PHPAjax
// Create a directory
ResCreate = fMakeDir("C:\MyDirectories\MyFiles")
// If the directory named MyDirectories does not exist,
// the function creates MyDirectories then MyFiles
Syntax
<Result> = fMakeDir(<Path of directory to create>)
<Result>: Boolean
  • True if the directory was created or if this directory already exists,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
AndroidAndroid Widget Java The function returns False if the directory to create already exists.
<Path of directory to create>: Character string
Name and full (or relative) path of the directory to create (up to 260 characters). A UNC path can be used. This directory name may (or may not) end with "\". If no drive letter is specified, the directory is created in the current directory. If this parameter contains several directories that do not exist, all the necessary directories are created.
WindowsLinux This parameter can be in Ansi or Unicode format.
AndroidAndroid Widget This parameter can correspond to a full path or a path relative to the current directory (returned by fCurrentDir). This parameter is case-sensitive.
Reminder: In Android, the file system is read-only on the device and on the emulator. An application can only write to its installation directory or one of its subdirectories, as well as to the external memory (SDCard).
AndroidAndroid Widget Java You cannot use a syntax of file path without separator between the name of the drive and the first directory (or file). The following syntax is not supported: "c:MyDirectory".
iPhone/iPadIOS WidgetMac Catalyst This parameter can correspond to a full path or a path relative to the current directory (returned by fCurrentDir). This parameter is case-sensitive.
Reminder: On iPhone/iPad, both on the device and in the emulator, the file system is read-only.. An application can only write to its installation directory or one of its subdirectories.
Remarks
WINDEVWEBDEV - Server codeReports and QueriesUser code (UMC)

Operating mode in Windows Vista (and later)

If this function does not work properly in Windows Vista (and later), check whether the file or directory used is not in one of the system directories (Windows directory or "Program Files" directory).
In Windows Vista (and later), with the UAC mechanism (User Account Control) enabled, you must have administrator privileges to handle and/or modify the files or directories in system directories (Windows directory or "Program Files" directory).
Programming tip: If you need to manipulate / modify files or directories, without needing administrator privileges, it is advisable:
  • avoid writing to the Windows directory or to the "Program Files" directory,
  • use the system directory of the application (returned by SysDir with the srAppDataCommun constant, for example).
Remark: Under Windows Vista (or higher), the virtualization mechanism makes applications Vista-compatible.. If the file is created in a system directory without having sufficient rights, this file will actually be created in another directory (C:\Users\<LOGIN>AppData\Local\VirtualStore\Windows\). In this case, the file cannot be shared between several applications.
WINDEV

Previous versions

This function replaces fMakeDir_55, which is kept for compatibility with WINDEV 5.5.
Component: wd300std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/30/2024

Send a report | Local help