blob: d819d474ae65d1682531edd7397beb9754bc429c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef UFM_CMDS_H
#define UFM_CMDS_H
#include <Uefi.h>
#include <Library/ShellLib.h>
/*
* Creates one or more directories.
*
* dir_name: the name of a directory or directories to create
*
* return: EFI_SUCCESS Directory(-ies) was created
EFI_INVALID_PARAMETER Parameter has an invalid value
EFI_ACCESS_DENIED Error while creating directory(-ies)
EFI_OUT_OF_RESOURCES Not enough resources were available to open the
file
*/
EFI_STATUS make_directory(CONST CHAR16 *dir_name);
#endif /* UFM_CMDS_H */
|