FreeRTOS
[armadillo_firmware.git] / FreeRTOS / Common / FileSystem / FatFs-0.7e / doc / en / mkdir.html
blobc76991df6a78f4481c50cadf0404abf6da0dcca4
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html lang="en">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5 <meta http-equiv="Content-Style-Type" content="text/css">
6 <link rel="up" title="FatFs" href="../00index_e.html">
7 <link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
8 <title>FatFs - f_mkdir</title>
9 </head>
11 <body>
13 <div class="para">
14 <h2>f_mkdir</h2>
15 <p>The f_mkdir function creates a new directory.</p>
16 <pre>
17 FRESULT f_mkdir (
18 const XCHAR* <em>DirName</em> /* Pointer to the directory name */
20 </pre>
21 </div>
23 <div class="para">
24 <h4>Parameter</h4>
25 <dl class="par">
26 <dt>DirName</dt>
27 <dd>Pointer to the null-terminated string that specifies the <a href="filename.html">directory name</a> to create. </dd>
28 </dl>
29 </div>
32 <div class="para">
33 <h4>Return Value</h4>
34 <dl class="ret">
35 <dt>FR_OK (0)</dt>
36 <dd>The function succeeded.</dd>
37 <dt>FR_NO_PATH</dt>
38 <dd>Could not find the path.</dd>
39 <dt>FR_INVALID_NAME</dt>
40 <dd>The path name is invalid.</dd>
41 <dt>FR_INVALID_DRIVE</dt>
42 <dd>The drive number is invalid.</dd>
43 <dt>FR_DENIED</dt>
44 <dd>The directory cannot be created due to directory table or disk is full.</dd>
45 <dt>FR_EXIST</dt>
46 <dd>A file or directory that has same name is already existing.</dd>
47 <dt>FR_NOT_READY</dt>
48 <dd>The disk drive cannot work due to no medium in the drive or any other reason.</dd>
49 <dt>FR_WRITE_PROTECTED</dt>
50 <dd>The medium is write protected.</dd>
51 <dt>FR_DISK_ERR</dt>
52 <dd>The function failed due to an error in the disk function.</dd>
53 <dt>FR_INT_ERR</dt>
54 <dd>The function failed due to a wrong FAT structure or an internal error.</dd>
55 <dt>FR_NOT_ENABLED</dt>
56 <dd>The logical drive has no work area.</dd>
57 <dt>FR_NO_FILESYSTEM</dt>
58 <dd>There is no valid FAT volume on the disk.</dd>
59 </dl>
60 </div>
63 <div class="para">
64 <h4>Description</h4>
65 <p>The f_mkdir function creates a new directory.</p>
66 </div>
69 <div class="para">
70 <h4>QuickInfo</h4>
71 <p>Available when <tt>_FS_READONLY == 0</tt> and <tt>_FS_MINIMIZE == 0</tt>.</p>
72 </div>
75 <div class="para">
76 <h4>Example</h4>
77 <pre>
78 res = f_mkdir("sub1");
79 if (res) die(res);
80 res = f_mkdir("sub1/sub2");
81 if (res) die(res);
82 res = f_mkdir("sub1/sub2/sub3");
83 if (res) die(res);
84 </pre>
85 </div>
87 <p class="foot"><a href="../00index_e.html">Return</a></p>
88 </body>
89 </html>