Flipper Developer Docs
Toggle main menu visibility
Main Page
Related Pages
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Files
File List
Globals
All
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Variables
Typedefs
a
b
c
d
e
f
g
i
m
n
p
r
s
t
v
Enumerations
a
b
c
d
e
f
g
i
n
o
p
r
s
v
Enumerator
c
e
f
g
i
n
o
r
s
v
Macros
_
d
e
f
r
v
w
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
Loading...
Searching...
No Matches
path.h
1
#pragma once
2
#include <furi.h>
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
14
void
path_extract_filename_no_ext(
const
char
* path,
FuriString
* filename);
15
23
void
path_extract_filename(
FuriString
* path,
FuriString
* filename,
bool
trim_ext);
24
32
void
path_extract_extension(
FuriString
* path,
char
* ext,
size_t
ext_len_max);
33
40
void
path_extract_basename(
const
char
* path,
FuriString
* basename);
41
48
void
path_extract_dirname(
const
char
* path,
FuriString
* dirname);
49
56
void
path_append(
FuriString
* path,
const
char
* suffix);
57
65
void
path_concat(
const
char
* path,
const
char
* suffix,
FuriString
* out_path);
66
74
bool
path_contains_only_ascii(
const
char
* path);
75
76
#ifdef __cplusplus
77
}
78
#endif
FuriString
Definition
string.c:4
lib
toolbox
path.h
Generated by
1.12.0