2008-03-08 13:52:38 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Name: filefn.h
|
2008-03-19 08:02:01 +00:00
|
|
|
|
// Purpose: interface of wxPathList and file functions
|
2008-03-08 13:52:38 +00:00
|
|
|
|
// Author: wxWidgets team
|
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
|
// Licence: wxWindows license
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@class wxPathList
|
|
|
|
|
@wxheader{filefn.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
The path list is a convenient way of storing a number of directories, and
|
2008-03-19 08:02:01 +00:00
|
|
|
|
when presented with a filename without a directory, searching for an
|
|
|
|
|
existing file in those directories.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Be sure to look also at wxStandardPaths if you only want to search files in
|
|
|
|
|
some standard paths.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@library{wxbase}
|
|
|
|
|
@category{file}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
@see wxArrayString, wxStandardPaths, wxFileName
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
class wxPathList : public wxArrayString
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
//@{
|
|
|
|
|
/**
|
|
|
|
|
Constructs the object calling the Add() function.
|
|
|
|
|
*/
|
|
|
|
|
wxPathList();
|
2008-03-08 14:43:31 +00:00
|
|
|
|
wxPathList(const wxArrayString& arr);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
//@}
|
|
|
|
|
|
|
|
|
|
//@{
|
|
|
|
|
/**
|
|
|
|
|
The first form adds the given directory to the path list, if the path is not
|
|
|
|
|
already in the list.
|
|
|
|
|
If the path cannot be normalized for some reason, it returns @false.
|
|
|
|
|
The second form just calls the first form on all elements of the given array.
|
2008-03-09 12:33:59 +00:00
|
|
|
|
The @a path is always considered a directory but no existence checks will be
|
2008-03-08 13:52:38 +00:00
|
|
|
|
done on it
|
|
|
|
|
(because if it doesn't exist, it could be created later and thus result a valid
|
|
|
|
|
path when
|
|
|
|
|
FindValidPath() is called).
|
|
|
|
|
@b Note: if the given path is relative, it won't be made absolute before adding
|
|
|
|
|
it
|
|
|
|
|
(this is why FindValidPath() may return relative paths).
|
|
|
|
|
*/
|
|
|
|
|
bool Add(const wxString& path);
|
2008-03-08 14:43:31 +00:00
|
|
|
|
void Add(const wxArrayString& arr);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
//@}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Finds the value of the given environment variable, and adds all paths
|
|
|
|
|
to the path list. Useful for finding files in the @c PATH variable, for
|
|
|
|
|
example.
|
|
|
|
|
*/
|
|
|
|
|
void AddEnvList(const wxString& env_variable);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Given a full filename (with path), calls Add() with the path
|
|
|
|
|
of the file.
|
|
|
|
|
*/
|
|
|
|
|
bool EnsureFileAccessible(const wxString& filename);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Like FindValidPath() but this function always
|
|
|
|
|
returns an absolute path (eventually prepending the current working directory
|
|
|
|
|
to the value returned wxPathList::FindValidPath) or an
|
|
|
|
|
empty string.
|
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
wxString FindAbsoluteValidPath(const wxString& file) const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Searches the given file in all paths stored in this class.
|
|
|
|
|
The first path which concatenated to the given string points to an existing
|
2008-03-19 08:02:01 +00:00
|
|
|
|
file (see wxFileExists()) is returned.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
If the file wasn't found in any of the stored paths, an empty string is
|
|
|
|
|
returned.
|
|
|
|
|
The given string must be a file name, eventually with a path prefix (if the path
|
|
|
|
|
prefix is absolute, only its name will be searched); i.e. it must not end with
|
|
|
|
|
a directory separator (see wxFileName::GetPathSeparator)
|
|
|
|
|
otherwise an assertion will fail.
|
|
|
|
|
The returned path may be relative to the current working directory.
|
|
|
|
|
Note in fact that wxPathList can be used to store both relative and absolute
|
|
|
|
|
paths so that
|
|
|
|
|
if you Added() relative paths, then the current working directory
|
2008-03-10 15:24:38 +00:00
|
|
|
|
(see wxGetCwd() and wxSetWorkingDirectory())
|
2008-03-08 13:52:38 +00:00
|
|
|
|
may affect the value returned by this function!
|
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
wxString FindValidPath(const wxString& file) const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
// ============================================================================
|
|
|
|
|
// Global functions/macros
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
/** @ingroup group_funcmacro_file */
|
|
|
|
|
//@{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Under Unix this macro changes the current process umask to the given value,
|
|
|
|
|
unless it is equal to -1 in which case nothing is done, and restores it to
|
|
|
|
|
the original value on scope exit. It works by declaring a variable which
|
|
|
|
|
sets umask to @a mask in its constructor and restores it in its destructor.
|
|
|
|
|
Under other platforms this macro expands to nothing.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
|
|
|
|
*/
|
|
|
|
|
#define wxCHANGE_UMASK(int mask)
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
|
|
|
|
This function returns the total number of bytes and number of free bytes on
|
2008-03-19 08:02:01 +00:00
|
|
|
|
the disk containing the directory @a path (it should exist). Both @a total
|
|
|
|
|
and @a free parameters may be @NULL if the corresponding information is not
|
|
|
|
|
needed.
|
|
|
|
|
|
|
|
|
|
@wxsince{2.3.2}
|
|
|
|
|
|
|
|
|
|
@note The generic Unix implementation depends on the system having the
|
|
|
|
|
@c statfs() or @c statvfs() function.
|
|
|
|
|
|
|
|
|
|
@returns @true on success, @false if an error occurred (for example, the
|
|
|
|
|
directory doesn’t exist).
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
bool wxGetDiskSpace(const wxString& path,
|
2008-03-09 12:33:59 +00:00
|
|
|
|
wxLongLong total = NULL,
|
|
|
|
|
wxLongLong free = NULL);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Returns the Windows directory under Windows; other platforms return an
|
2008-03-08 13:52:38 +00:00
|
|
|
|
empty string.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
wxString wxGetOSDirectory();
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Parses the @a wildCard, returning the number of filters. Returns 0 if none
|
|
|
|
|
or if there's a problem.
|
|
|
|
|
|
|
|
|
|
The arrays will contain an equal number of items found before the error. On
|
|
|
|
|
platforms where native dialogs handle only one filter per entry, entries in
|
|
|
|
|
arrays are automatically adjusted. @a wildCard is in the form:
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@code
|
|
|
|
|
"All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
|
|
|
|
|
@endcode
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
int wxParseCommonDialogsFilter(const wxString& wildCard,
|
|
|
|
|
wxArrayString& descriptions,
|
|
|
|
|
wxArrayString& filters);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Converts a DOS to a Unix filename by replacing backslashes with forward
|
|
|
|
|
slashes.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
|
|
|
|
*/
|
|
|
|
|
void wxDos2UnixFilename(wxChar* s);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@warning This function is deprecated, use wxFileName instead.
|
|
|
|
|
|
|
|
|
|
Converts a Unix to a DOS filename by replacing forward slashes with
|
|
|
|
|
backslashes.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
|
void wxUnix2DosFilename(wxChar* s);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-09 12:33:59 +00:00
|
|
|
|
Returns @true if @a dirname exists and is a directory.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
bool wxDirExists(const wxString& dirname);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
@warning This function is obsolete, please use wxFileName::SplitPath()
|
|
|
|
|
instead.
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
This function splits a full file name into components: the path (including
|
2008-03-19 08:02:01 +00:00
|
|
|
|
possible disk/drive specification under Windows), the base name, and the
|
|
|
|
|
extension. Any of the output parameters (@a path, @a name or @a ext) may be
|
|
|
|
|
@NULL if you are not interested in the value of a particular component.
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
wxSplitPath() will correctly handle filenames with both DOS and Unix path
|
2008-03-19 08:02:01 +00:00
|
|
|
|
separators under Windows, however it will not consider backslashes as path
|
|
|
|
|
separators under Unix (where backslash is a valid character in a filename).
|
|
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
|
On entry, @a fullname should be non-@NULL (it may be empty though).
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
On return, @a path contains the file path (without the trailing separator),
|
|
|
|
|
@a name contains the file name and @c ext contains the file extension
|
|
|
|
|
without leading dot. All three of them may be empty if the corresponding
|
|
|
|
|
component is. The old contents of the strings pointed to by these
|
|
|
|
|
parameters will be overwritten in any case (if the pointers are not @NULL).
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
void wxSplitPath(const wxString& fullname,
|
|
|
|
|
wxString* path,
|
|
|
|
|
wxString* name,
|
|
|
|
|
wxString* ext);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns time of last modification of given file.
|
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
The function returns <tt>(time_t)-1</tt> if an error occurred (e.g. file
|
|
|
|
|
not found).
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
time_t wxFileModificationTime(const wxString& filename);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-09 12:33:59 +00:00
|
|
|
|
Renames @a file1 to @e file2, returning @true if successful.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
|
If @a overwrite parameter is @true (default), the destination file is
|
2008-03-19 08:02:01 +00:00
|
|
|
|
overwritten if it exists, but if @a overwrite is @false, the functions
|
|
|
|
|
fails in this case.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
bool wxRenameFile(const wxString& file1,
|
|
|
|
|
const wxString& file2,
|
|
|
|
|
bool overwrite = true);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Copies @a file1 to @e file2, returning @true if successful. If @a overwrite
|
|
|
|
|
parameter is @true (default), the destination file is overwritten if it
|
|
|
|
|
exists, but if @a overwrite is @false, the functions fails in this case.
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
This function supports resources forks under Mac OS.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
bool wxCopyFile(const wxString& file1,
|
|
|
|
|
const wxString& file2,
|
|
|
|
|
bool overwrite = true);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns @true if the file exists and is a plain file.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
bool wxFileExists(const wxString& filename);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Returns @true if the @a pattern matches the @e text; if @a dot_special is
|
|
|
|
|
@true, filenames beginning with a dot are not matched with wildcard
|
|
|
|
|
characters.
|
|
|
|
|
|
|
|
|
|
@see wxIsWild()
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
bool wxMatchWild(const wxString& pattern,
|
|
|
|
|
const wxString& text,
|
|
|
|
|
bool dot_special);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
@warning This function is deprecated, use wxGetCwd() instead.
|
|
|
|
|
|
|
|
|
|
Copies the current working directory into the buffer if supplied, or copies
|
|
|
|
|
the working directory into new storage (which you must delete yourself) if
|
|
|
|
|
the buffer is @NULL.
|
|
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
|
@a sz is the size of the buffer if supplied.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
|
wxString wxGetWorkingDirectory(char* buf = NULL, int sz = 1000);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns the directory part of the filename.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
wxString wxPathOnly(const wxString& path);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Returns @true if the pattern contains wildcards.
|
|
|
|
|
|
|
|
|
|
@see wxMatchWild()
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
bool wxIsWild(const wxString& pattern);
|
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
/**
|
|
|
|
|
Returns @true if the argument is an absolute filename, i.e. with a slash
|
|
|
|
|
or drive name at the beginning.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
|
|
|
|
*/
|
|
|
|
|
bool wxIsAbsolutePath(const wxString& filename);
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
|
|
|
|
Returns a string containing the current (or working) directory.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
wxString wxGetCwd();
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Sets the current working directory, returning @true if the operation
|
|
|
|
|
succeeded. Under MS Windows, the current drive is also changed if @a dir
|
|
|
|
|
contains a drive specification.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
bool wxSetWorkingDirectory(const wxString& dir);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Concatenates @a file1 and @a file2 to @e file3, returning @true if
|
|
|
|
|
successful.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
bool wxConcatFiles(const wxString& file1,
|
|
|
|
|
const wxString& file2,
|
|
|
|
|
const wxString& file3);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Removes @e file, returning @true if successful.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
bool wxRemoveFile(const wxString& file);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Makes the directory @a dir, returning @true if successful.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
|
@a perm is the access mask for the directory for the systems on which it is
|
2008-03-08 13:52:38 +00:00
|
|
|
|
supported (Unix) and doesn't have any effect on the other ones.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
bool wxMkdir(const wxString& dir, int perm = 0777);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Removes the directory @a dir, returning @true if successful. Does not work
|
|
|
|
|
under VMS.
|
|
|
|
|
|
|
|
|
|
The @a flags parameter is reserved for future use.
|
|
|
|
|
|
|
|
|
|
@note There is also a wxRmDir() function which simply wraps the standard
|
|
|
|
|
POSIX @c rmdir() function and so return an integer error code instead
|
|
|
|
|
of a boolean value (but otherwise is currently identical to
|
|
|
|
|
wxRmdir()), don't confuse these two functions.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
bool wxRmdir(const wxString& dir, int flags = 0);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-10 15:24:38 +00:00
|
|
|
|
Returns the next file that matches the path passed to wxFindFirstFile().
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
See wxFindFirstFile() for an example.
|
2008-03-19 08:02:01 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
wxString wxFindNextFile();
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
This function does directory searching; returns the first file that matches
|
|
|
|
|
the path @a spec, or the empty string. Use wxFindNextFile() to get the next
|
|
|
|
|
matching file. Neither will report the current directory "." or the parent
|
|
|
|
|
directory "..".
|
|
|
|
|
|
|
|
|
|
@warning As of 2.5.2, these functions are not thread-safe! (they use static
|
|
|
|
|
variables). You probably want to use wxDir::GetFirst() or
|
|
|
|
|
wxDirTraverser instead.
|
|
|
|
|
|
|
|
|
|
@a spec may contain wildcards.
|
|
|
|
|
|
|
|
|
|
@a flags may be wxDIR for restricting the query to directories, wxFILE for
|
|
|
|
|
files or zero for either.
|
|
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
@code
|
|
|
|
|
wxString f = wxFindFirstFile("/home/project/*.*");
|
|
|
|
|
while ( !f.empty() )
|
|
|
|
|
{
|
|
|
|
|
...
|
|
|
|
|
f = wxFindNextFile();
|
|
|
|
|
}
|
|
|
|
|
@endcode
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
wxString wxFindFirstFile(const wxString& spec, int flags = 0);
|
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
/**
|
|
|
|
|
File kind enumerations returned from wxGetFileKind().
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
|
|
|
|
*/
|
|
|
|
|
enum wxFileKind
|
|
|
|
|
{
|
|
|
|
|
wxFILE_KIND_UNKNOWN, ///< Unknown file kind, or unable to determine
|
|
|
|
|
wxFILE_KIND_DISK, ///< A file supporting seeking to arbitrary offsets
|
|
|
|
|
wxFILE_KIND_TERMINAL, ///< A tty
|
|
|
|
|
wxFILE_KIND_PIPE ///< A pipe
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//@}
|
|
|
|
|
|
|
|
|
|
/** @ingroup group_funcmacro_file */
|
2008-03-08 13:52:38 +00:00
|
|
|
|
//@{
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
Returns the type of an open file. Possible return values are enumerations
|
|
|
|
|
of ::wxFileKind.
|
2008-03-09 12:33:59 +00:00
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
wxFileKind wxGetFileKind(int fd);
|
2008-03-09 12:33:59 +00:00
|
|
|
|
wxFileKind wxGetFileKind(FILE* fp);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
//@}
|
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
/** @ingroup group_funcmacro_file */
|
2008-03-08 13:52:38 +00:00
|
|
|
|
//@{
|
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
@warning This function is obsolete, please use wxFileName::SplitPath()
|
|
|
|
|
instead.
|
|
|
|
|
|
|
|
|
|
Returns the filename for a full path. The second form returns a pointer to
|
|
|
|
|
temporary storage that should not be deallocated.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
wxString wxFileNameFromPath(const wxString& path);
|
|
|
|
|
char* wxFileNameFromPath(char* path);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
//@}
|
|
|
|
|
|
2008-03-19 08:02:01 +00:00
|
|
|
|
/** @ingroup group_funcmacro_file */
|
|
|
|
|
//@{
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
2008-03-19 08:02:01 +00:00
|
|
|
|
@warning This function is obsolete, please use
|
|
|
|
|
wxFileName::CreateTempFileName() instead.
|
|
|
|
|
|
|
|
|
|
@header{wx/filefn.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-19 08:02:01 +00:00
|
|
|
|
char* wxGetTempFileName(const wxString& prefix, char* buf = NULL);
|
|
|
|
|
bool wxGetTempFileName(const wxString& prefix, wxString& buf);
|
|
|
|
|
//@}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|