2 % automatically generated by HelpGen from
3 % filesystem.tex at 21/Mar/99 23:00:52
6 \section{\class{wxFileSystem
}}\label{wxfilesystem
}
8 This class provides an interface for opening files on different
9 file systems. It can handle absolute and/or local filenames.
10 It uses a system of
\helpref{handlers
}{wxfilesystemhandler
} to
11 provide access to user-defined virtual file systems.
13 \wxheading{Derived from
}
15 \helpref{wxObject
}{wxobject
}
17 \wxheading{Include files
}
23 \helpref{wxFileSystemHandler
}{wxfilesystemhandler
},
24 \helpref{wxFSFile
}{wxfsfile
},
25 \helpref{Overview
}{fs
}
27 \latexignore{\rtfignore{\wxheading{Members
}}}
30 \membersection{wxFileSystem::wxFileSystem
}\label{wxfilesystemwxfilesystem
}
32 \func{}{wxFileSystem
}{\void}
37 \membersection{wxFileSystem::AddHandler
}\label{wxfilesystemaddhandler
}
39 \func{static void
}{AddHandler
}{\param{wxFileSystemHandler
}{*handler
}}
41 This static function adds new handler into the list of
42 \helpref{handlers
}{wxfilesystemhandler
} which provide access to virtual FS.
43 Note that if two handlers for the same protocol are added, the last one added
51 wxFileSystem::AddHandler(new My_FS_Handler);
54 This is because (a) AddHandler is a static method, and (b) the handlers
55 are deleted in wxFileSystem's destructor so that you don't have to
59 \membersection{wxFileSystem::HasHandlerForPath
}\label{wxfilesystemhashandlerforpath
}
61 \func{static bool
}{HasHandlerForPath
}{\param{const wxString \&
}{ location
}}
63 This static function returns
\true if there is a registered handler which can open the given
67 \membersection{wxFileSystem::ChangePathTo
}\label{wxfilesystemchangepathto
}
69 \func{void
}{ChangePathTo
}{\param{const wxString\&
}{location
},
\param{bool
}{is
\_dir = false
}}
71 Sets the current location.
{\it location
} parameter passed to
72 \helpref{OpenFile
}{wxfilesystemopenfile
} is relative to this path.
74 {\bf Caution!
} Unless
{\it is
\_dir} is true the
{\it location
} parameter
75 is not the directory name but the name of the file in this directory. All these
76 commands change the path to "dir/subdir/":
79 ChangePathTo("dir/subdir/xh.htm");
80 ChangePathTo("dir/subdir", true);
81 ChangePathTo("dir/subdir/", true);
84 \wxheading{Parameters
}
86 \docparam{location
}{the new location. Its meaning depends on the value of
{\it is
\_dir}}
88 \docparam{is
\_dir}{if true
{\it location
} is new directory. If false (default)
89 {\it location
} is
{\bf file in
} the new directory.
}
94 f = fs -> OpenFile("hello.htm"); // opens file 'hello.htm'
95 fs -> ChangePathTo("subdir/folder", true);
96 f = fs -> OpenFile("hello.htm"); // opens file 'subdir/folder/hello.htm' !!
100 \membersection{wxFileSystem::GetPath
}\label{wxfilesystemgetpath
}
102 \func{wxString
}{GetPath
}{\void}
104 Returns actual path (set by
\helpref{ChangePathTo
}{wxfilesystemchangepathto
}).
107 \membersection{wxFileSystem::FileNameToURL
}\label{wxfilesystemfilenametourl
}
109 \func{static wxString
}{FileNameToURL
}{\param{wxFileName
}{filename
}}
111 Converts filename into URL.
115 \helpref{wxFileSystem::URLToFileName
}{wxfilesystemurltofilename
},
116 \helpref{wxFileName
}{wxfilename
}
119 \membersection{wxFileSystem::FindFileInPath
}\label{wxfilesystemfindfileinpath
}
121 \func{bool
}{FindFileInPath
}{\param{wxString
}{*str
},
\param{const wxChar
}{*path
},
\param{const wxChar
}{*file
}}
123 Looks for the file with the given name
\arg{file
} in a colon or semi-colon
124 (depending on the current platform) separated list of directories in
125 \arg{path
}. If the file is found in any directory, returns
\true and the full
126 path of the file in
\arg{str
}, otherwise returns
\false and doesn't modify
129 \wxheading{Parameters
}
131 \docparam{str
}{Receives the full path of the file, must not be
\NULL}
133 \docparam{path
}{\texttt{wxPATH
\_SEP}-separated list of directories
}
135 \docparam{file
}{the name of the file to look for
}
138 \membersection{wxFileSystem::FindFirst
}\label{wxfilesystemfindfirst
}
140 \func{wxString
}{FindFirst
}{\param{const wxString\&
}{wildcard
},
\param{int
}{flags =
0}}
142 Works like
\helpref{wxFindFirstFile
}{wxfindfirstfile
}. Returns name of the first
143 filename (within filesystem's current path) that matches
{\it wildcard
}.
{\it flags
} may be one of
144 wxFILE (only files), wxDIR (only directories) or
0 (both).
147 \membersection{wxFileSystem::FindNext
}\label{wxfilesystemfindnext
}
149 \func{wxString
}{FindNext
}{\void}
151 Returns the next filename that matches parameters passed to
\helpref{FindFirst
}{wxfilesystemfindfirst
}.
154 \membersection{wxFileSystem::OpenFile
}\label{wxfilesystemopenfile
}
156 \func{wxFSFile*
}{OpenFile
}{\param{const wxString\&
}{location
},
\param{int
}{flags = wxFS
\_READ}}
158 Opens the file and returns a pointer to a
\helpref{wxFSFile
}{wxfsfile
} object
159 or NULL if failed. It first tries to open the file in relative scope
160 (based on value passed to ChangePathTo() method) and then as an
161 absolute path. Note that the user is responsible for deleting the returned
164 {\it flags
} can be one or more of the following bit values ored together:
169 wxFS_READ =
1, // Open for reading
170 wxFS_SEEKABLE =
4 // Returned stream will be seekable
174 A stream opened with just the default
{\it wxFS
\_READ} flag may
175 or may not be seekable depending on the underlying source.
176 Passing
{\it wxFS
\_READ | wxFS
\_SEEKABLE} for
{\it flags
} will
177 back a stream that is not natively seekable with memory or a file
178 and return a stream that is always seekable.
181 \membersection{wxFileSystem::URLToFileName
}\label{wxfilesystemurltofilename
}
183 \func{static wxFileName
}{URLToFileName
}{\param{const wxString\&
}{url
}}
185 Converts URL into a well-formed filename. The URL must use the
{\tt file
}
190 \helpref{wxFileSystem::FileNameToURL
}{wxfilesystemfilenametourl
},
191 \helpref{wxFileName
}{wxfilename
}