FLTK 1.3.3
|
File names and URI functions defined in <FL/filename.H> More...
Macros | |
#define | fl_dirent_h_cyclic_include |
#define | FL_PATH_MAX 2048 |
all path buffers should use this length | |
Typedefs | |
typedef int( | Fl_File_Sort_F )(struct dirent **, struct dirent **) |
File sorting function. More... | |
Functions | |
FL_EXPORT void | fl_decode_uri (char *uri) |
Decodes a URL-encoded string. More... | |
FL_EXPORT int | fl_filename_absolute (char *to, int tolen, const char *from) |
Makes a filename absolute from a relative filename. More... | |
FL_EXPORT int | fl_filename_expand (char *to, int tolen, const char *from) |
Expands a filename containing shell variables and tilde (~). More... | |
FL_EXPORT const char * | fl_filename_ext (const char *buf) |
Gets the extensions of a filename. More... | |
FL_EXPORT void | fl_filename_free_list (struct dirent ***l, int n) |
Free the list of filenames that is generated by fl_filename_list(). More... | |
FL_EXPORT int | fl_filename_isdir (const char *name) |
Determines if a file exists and is a directory from its filename. More... | |
FL_EXPORT int | fl_filename_list (const char *d, struct dirent ***l, Fl_File_Sort_F *s=fl_numericsort) |
Portable and const-correct wrapper for the scandir() function. More... | |
FL_EXPORT int | fl_filename_match (const char *name, const char *pattern) |
Checks if a string s matches a pattern p . More... | |
FL_EXPORT const char * | fl_filename_name (const char *filename) |
Gets the file name from a path. More... | |
FL_EXPORT int | fl_filename_relative (char *to, int tolen, const char *from) |
Makes a filename relative to the current working directory. More... | |
FL_EXPORT char * | fl_filename_setext (char *to, int tolen, const char *ext) |
Replaces the extension in buf of max. More... | |
FL_EXPORT int | fl_open_uri (const char *uri, char *msg, int msglen) |
Opens the specified Uniform Resource Identifier (URI). More... | |
File names and URI functions defined in <FL/filename.H>
typedef int( Fl_File_Sort_F)(struct dirent **, struct dirent **) |
File sorting function.
void fl_decode_uri | ( | char * | uri | ) |
Decodes a URL-encoded string.
In a Uniform Resource Identifier (URI), all non-ASCII bytes and several others (e.g., '<', '', ' ') are URL-encoded using 3 bytes by "%XY" where XY is the hexadecimal value of the byte. This function decodes the URI restoring its original UTF-8 encoded content. Decoding is done in-place.
FL_EXPORT int fl_filename_absolute | ( | char * | to, |
int | tolen, | ||
const char * | from | ||
) |
Makes a filename absolute from a relative filename.
[out] | to | resulting absolute filename |
[in] | tolen | size of the absolute filename buffer |
[in] | from | relative filename |
FL_EXPORT int fl_filename_expand | ( | char * | to, |
int | tolen, | ||
const char * | from | ||
) |
Expands a filename containing shell variables and tilde (~).
Currently handles these variants:
Examples:
[out] | to | resulting expanded filename |
[in] | tolen | size of the expanded filename buffer |
[in] | from | filename containing shell variables |
FL_EXPORT const char* fl_filename_ext | ( | const char * | buf | ) |
Gets the extensions of a filename.
[in] | buf | the filename to be parsed |
FL_EXPORT void fl_filename_free_list | ( | struct dirent *** | list, |
int | n | ||
) |
Free the list of filenames that is generated by fl_filename_list().
Free everything that was allocated by a previous call to fl_filename_list(). Use the return values as parameters for this function.
[in,out] | list | table containing the resulting directory listing |
[in] | n | number of entries in the list |
FL_EXPORT int fl_filename_isdir | ( | const char * | n | ) |
Determines if a file exists and is a directory from its filename.
[in] | n | the filename to parse |
FL_EXPORT int fl_filename_list | ( | const char * | d, |
dirent *** | list, | ||
Fl_File_Sort_F * | sort | ||
) |
Portable and const-correct wrapper for the scandir() function.
For each file in that directory a "dirent" structure is created. The only portable thing about a dirent is that dirent.d_name is the nul-terminated file name. An pointers array to these dirent's is created and a pointer to the array is returned in *list. The number of entries is given as a return value. If there is an error reading the directory a number less than zero is returned, and errno has the reason; errno does not work under WIN32.
Include:
[in] | d | the name of the directory to list. It does not matter if it has a trailing slash. |
[out] | list | table containing the resulting directory listing |
[in] | sort | sorting functor:
|
FL_EXPORT int fl_filename_match | ( | const char * | s, |
const char * | p | ||
) |
Checks if a string s
matches a pattern p
.
The following syntax is used for the pattern:
Include:
[in] | s | the string to check for a match |
[in] | p | the string pattern |
FL_EXPORT const char* fl_filename_name | ( | const char * | filename | ) |
Gets the file name from a path.
Similar to basename(3), exceptions shown below.
filename
if there is none. FL_EXPORT int fl_filename_relative | ( | char * | to, |
int | tolen, | ||
const char * | from | ||
) |
Makes a filename relative to the current working directory.
[out] | to | resulting relative filename |
[in] | tolen | size of the relative filename buffer |
[in] | from | absolute filename |
FL_EXPORT char* fl_filename_setext | ( | char * | buf, |
int | buflen, | ||
const char * | ext | ||
) |
Replaces the extension in buf
of max.
size buflen
with the extension in ext
.
If there's no '.' in buf
, ext
is appended.
If ext
is NULL, behaves as if it were an empty string ("").
Example
int fl_open_uri | ( | const char * | uri, |
char * | msg, | ||
int | msglen | ||
) |
Opens the specified Uniform Resource Identifier (URI).
Uses an operating-system dependent program or interface. For URIs using the "ftp", "http", or "https" schemes, the system default web browser is used to open the URI, while "mailto" and "news" URIs are typically opened using the system default mail reader and "file" URIs are opened using the file system navigator.
On success, the (optional) msg buffer is filled with the command that was run to open the URI; on Windows, this will always be "open uri".
On failure, the msg buffer is filled with an English error message.
Example
uri | The URI to open |
msg | Optional buffer which contains the command or error message |
msglen | Length of optional buffer |