1
10
13
14
20
21
22
23
24
25
26
27
28
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
106
107
108
109
110
111
112
113
114
115
116
117
118
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
223
224
227
228
229
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
251
252
253
254
255
256
257
258
262
263
264
265
266
267
268
269
270
271
272
273
275
280
281
282
289
290
291
292
293
294
295
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
324
325
328
329
330
332
336
337
338
339
340
341
342
344
345
346
347
349
350
351
352
353
354
355
356
357
359
360
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
394
395
396
397
398
405
420
421
422
423
424
425
426
427
433
434
435
436
437
438
442
443
444
445
446
447
448
449
450
451
452
453
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_system.h"
#include "fx_file.h"
#include "fx_utility.h"
#include "fx_directory.h"
5 includes#ifdef FX_ENABLE_EXFAT
#include "fx_directory_exFAT.h"
#endif
#ifndef FX_NO_LOCAL_PATH
FX_LOCAL_PATH_SETUP
#endif
...
...
UINT _fx_directory_default_set(FX_MEDIA *media_ptr, CHAR *new_path_name)
{
UINT status;
FX_DIR_ENTRY dir_entry;
CHAR *path_string_ptr;
UINT path_string_capacity;
FX_PATH *path_ptr;
UINT i;
#ifdef FX_ENABLE_EXFAT
CHAR abs_str[FX_MAXIMUM_PATH];
#endif
#ifndef FX_MEDIA_STATISTICS_DISABLE
media_ptr -> fx_media_directory_default_sets++;/* ... */
#endif
dir_entry.fx_dir_entry_name = media_ptr -> fx_media_name_buffer + FX_MAX_LONG_NAME_LEN;
dir_entry.fx_dir_entry_short_name[0] = 0;
dir_entry.fx_dir_entry_name[0] = (CHAR)0;
if (media_ptr -> fx_media_id != FX_MEDIA_ID)
{
return(FX_MEDIA_NOT_OPEN);
}if (media_ptr -> fx_media_id != FX_MEDIA_ID) { ... }
FX_TRACE_IN_LINE_INSERT(FX_TRACE_DIRECTORY_DEFAULT_SET, media_ptr, new_path_name, 0, 0, FX_TRACE_DIRECTORY_EVENTS, 0, 0)
FX_PROTECT
path_string_ptr = &(media_ptr -> fx_media_default_path.fx_path_string[0]);
#ifdef FX_ENABLE_EXFAT
if (media_ptr -> fx_media_FAT_type == FX_exFAT)
{
if (_fx_utility_absolute_path_get(path_string_ptr, new_path_name, abs_str) == FX_SUCCESS)
{
new_path_name = &(abs_str[0]);
}if (_fx_utility_absolute_path_get(path_string_ptr, new_path_name, abs_str) == FX_SUCCESS) { ... }
else
{
FX_UNPROTECT
return(FX_INVALID_PATH);
}else { ... }
}if (media_ptr -> fx_media_FAT_type == FX_exFAT) { ... }
/* ... */#endif
if ((!new_path_name) || (((new_path_name[0] == '\\') || (new_path_name[0] == '/')) && (new_path_name[1] == (CHAR)0)))
{
media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name[0] = (CHAR) 0;
media_ptr -> fx_media_default_path.fx_path_string[0] = (CHAR) 0;
media_ptr -> fx_media_default_path.fx_path_string[FX_MAXIMUM_PATH - 2] = (CHAR) 0;
}if ((!new_path_name) || (((new_path_name[0] == '\\') || (new_path_name[0] == '/')) && (new_path_name[1] == (CHAR)0))) { ... }
else
{
status = _fx_directory_search(media_ptr, new_path_name, &dir_entry, FX_NULL, FX_NULL);
/* ... */
if ((status != FX_SUCCESS) || (!(dir_entry.fx_dir_entry_attributes & FX_DIRECTORY)))
{
FX_UNPROTECT
return(FX_INVALID_PATH);
}if ((status != FX_SUCCESS) || (!(dir_entry.fx_dir_entry_attributes & FX_DIRECTORY))) { ... }
path_string_capacity = FX_MAXIMUM_PATH - 1;
if ((new_path_name[0] != '\\') && (new_path_name[0] != '/'))
{
/* ... */
#ifndef FX_NO_LOCAL_PATH
if (_tx_thread_current_ptr -> tx_thread_filex_ptr)
{
CHAR *saved_name_ptr;
saved_name_ptr = media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name;
path_ptr = (FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr;
media_ptr -> fx_media_default_path = *path_ptr;
media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name = saved_name_ptr;
path_ptr = &media_ptr -> fx_media_default_path;
}if (_tx_thread_current_ptr -> tx_thread_filex_ptr) { ... }
else
{
path_ptr = &media_ptr -> fx_media_default_path;
}else { ... }
/* ... */#else
path_ptr = &media_ptr -> fx_media_default_path;/* ... */
#endif
/* ... */
if (path_ptr -> fx_path_string[FX_MAXIMUM_PATH - 2] == '*')
{
if (!dir_entry.fx_dir_entry_cluster)
{
path_ptr -> fx_path_directory.fx_dir_entry_name[0] = (CHAR) 0;
dir_entry.fx_dir_entry_name[0] = (CHAR) 0;
path_ptr -> fx_path_string[0] = (CHAR)0;
/* ... */
path_ptr -> fx_path_string[FX_MAXIMUM_PATH - 2] = (CHAR)0;
}if (!dir_entry.fx_dir_entry_cluster) { ... }
path_ptr -> fx_path_directory = dir_entry;
for (i = 0; dir_entry.fx_dir_entry_name[i]; i++)
{
path_ptr -> fx_path_name_buffer[i] = dir_entry.fx_dir_entry_name[i];
}for (i = 0; dir_entry.fx_dir_entry_name[i]; i++) { ... }
path_ptr -> fx_path_directory.fx_dir_entry_name = path_ptr -> fx_path_name_buffer;
FX_UNPROTECT
return(FX_SUCCESS);
}if (path_ptr -> fx_path_string[FX_MAXIMUM_PATH - 2] == '*') { ... }
/* ... */
while ((path_string_capacity) && (*path_string_ptr != FX_NULL))
{
path_string_ptr++;
path_string_capacity--;
}while ((path_string_capacity) && (*path_string_ptr != FX_NULL)) { ... }
if (path_string_capacity)
{
*path_string_ptr++ = '\\';
path_string_capacity--;
}if (path_string_capacity) { ... }
}if ((new_path_name[0] != '\\') && (new_path_name[0] != '/')) { ... }
else
{
/* ... */
#ifndef FX_NO_LOCAL_PATH
if (_tx_thread_current_ptr -> tx_thread_filex_ptr)
{
CHAR *saved_name_ptr;
saved_name_ptr = media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name;
path_ptr = (FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr;
media_ptr -> fx_media_default_path = *path_ptr;
media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name = saved_name_ptr;
path_ptr = &media_ptr -> fx_media_default_path;
}if (_tx_thread_current_ptr -> tx_thread_filex_ptr) { ... }
else
{
path_ptr = &media_ptr -> fx_media_default_path;
}else { ... }
/* ... */#else
path_ptr = &media_ptr -> fx_media_default_path;/* ... */
#endif
/* ... */
if (path_ptr -> fx_path_string[FX_MAXIMUM_PATH - 2] == '*')
{
path_ptr -> fx_path_string[FX_MAXIMUM_PATH - 2] = (CHAR)0;
}if (path_ptr -> fx_path_string[FX_MAXIMUM_PATH - 2] == '*') { ... }
}else { ... }
while (*new_path_name)
{
/* ... */
if ((*new_path_name == '.') && (*(new_path_name + 1) == '.'))
{
/* ... */
path_string_capacity = path_string_capacity + 2;
path_string_ptr = path_string_ptr - 2;
while (path_string_capacity <= (FX_MAXIMUM_PATH - 1))
{
/* ... */
if ((*path_string_ptr == '\\') || (*path_string_ptr == '/'))
{
break;
}if ((*path_string_ptr == '\\') || (*path_string_ptr == '/')) { ... }
path_string_capacity++;
path_string_ptr--;
}while (path_string_capacity <= (FX_MAXIMUM_PATH - 1)) { ... }
new_path_name = new_path_name + 2;
}if ((*new_path_name == '.') && (*(new_path_name + 1) == '.')) { ... }
else
{
if (path_string_capacity)
{
*path_string_ptr++ = *new_path_name++;
path_string_capacity--;
}if (path_string_capacity) { ... }
else
{
break;
}else { ... }
}else { ... }
}while (*new_path_name) { ... }
if (path_string_capacity)
{
/* ... */
*path_string_ptr = (CHAR)FX_NULL;
}if (path_string_capacity) { ... }
else
{
/* ... */
if (*new_path_name)
{
/* ... */
path_ptr -> fx_path_string[FX_MAXIMUM_PATH - 2] = '*';
}if (*new_path_name) { ... }
}else { ... }
#ifdef FX_ENABLE_EXFAT
if ((!dir_entry.fx_dir_entry_cluster) && (media_ptr -> fx_media_FAT_type != FX_exFAT))
#else
if (!dir_entry.fx_dir_entry_cluster)
#endif
{
dir_entry.fx_dir_entry_name[0] = (CHAR)0;
path_ptr -> fx_path_name_buffer[0] = (CHAR)0;
...}
path_ptr -> fx_path_directory = dir_entry;
for (i = 0; dir_entry.fx_dir_entry_name[i]; i++)
{
path_ptr -> fx_path_name_buffer[i] = dir_entry.fx_dir_entry_name[i];
}for (i = 0; dir_entry.fx_dir_entry_name[i]; i++) { ... }
path_ptr -> fx_path_directory.fx_dir_entry_name = path_ptr -> fx_path_name_buffer;
}else { ... }
FX_UNPROTECT
return(FX_SUCCESS);
}{ ... }