Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_directory.h"
#include "fx_utility.h"
...
...
_fx_directory_default_get_copy(FX_MEDIA *, CHAR *, UINT)
Files
loading...
CodeScopeSTM32 Libraries and Samplesfilexcommon/src/fx_directory_default_get_copy.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
104
105
106
107
108
109
110
111
112
113
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** FileX Component */ /** */ /** Directory */ /** */... /**************************************************************************/ /**************************************************************************/ #define FX_SOURCE_CODE /* Include necessary system files. */ #include "fx_api.h" #include "fx_directory.h" #include "fx_utility.h" ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _fx_directory_default_get_copy PORTABLE C */ /* 6.1.6 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function copies the last path provided to the */ /* fx_directory_default_set function into the specified buffer. */ /* */ /* INPUT */ /* */ /* media_ptr Media control block pointer */ /* return_path_name_buffer Destination buffer for name */ /* return_path_name_buffer_size Size of buffer pointed to by */ /* return_path_name_buffer */ /* */ /* OUTPUT */ /* */ /* return status */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 William E. Lamie Initial Version 6.0 */ /* 09-30-2020 William E. Lamie Modified comment(s), verified */ /* memcpy usage, */ /* resulting in version 6.1 */ /* 04-02-2021 William E. Lamie Modified comment(s), verified */ /* memcpy usage, */ /* resulting in version 6.1.6 */ /* */... /**************************************************************************/ UINT _fx_directory_default_get_copy(FX_MEDIA *media_ptr, CHAR *return_path_name_buffer, UINT return_path_name_buffer_size) { UINT status; CHAR *return_path_name; UINT path_name_length_with_null_terminator; /* Get the pointer to the path. */ status = _fx_directory_default_get(media_ptr, &return_path_name); if (status == FX_SUCCESS) { /* Get the length of the path. */ path_name_length_with_null_terminator = _fx_utility_string_length_get(return_path_name, FX_MAXIMUM_PATH) + 1; /* Can it fit in the user's buffer? */ if (path_name_length_with_null_terminator <= return_path_name_buffer_size) { /* Copy the path name into the user's buffer. */ _fx_utility_memory_copy((UCHAR *) return_path_name, (UCHAR *) return_path_name_buffer, path_name_length_with_null_terminator); /* Use case of memcpy is verified. */ }if (path_name_length_with_null_terminator <= return_path_name_buffer_size) { ... } else { /* Buffer is too small. Return error. */ return(FX_BUFFER_ERROR); }else { ... } }if (status == FX_SUCCESS) { ... } /* Return successful status. */ return(status); }{ ... }