1QLocalFs(3qt) QLocalFs(3qt)
2
3
4
6 QLocalFs - Implementation of a QNetworkProtocol that works on the local
7 file system
8
10 #include <qlocalfs.h>
11
12 Inherits QNetworkProtocol.
13
14 Public Members
15 QLocalFs ()
16
18 The QLocalFs class is an implementation of a QNetworkProtocol that
19 works on the local file system.
20
21 This class is derived from QNetworkProtocol. QLocalFs is not normally
22 used directly, but rather through a QUrlOperator, for example:
23
24 QUrlOperator op( "file:///tmp" );
25 op.listChildren(); // Asks the server to provide a directory listing
26
27 This code will only work if the QLocalFs class is registered; to
28 register the class, you must call qInitNetworkProtocols() before using
29 a QUrlOperator with QLocalFs.
30
31 If you really need to use QLocalFs directly, don't forget to set its
32 QUrlOperator with setUrl().
33
34 See also Qt Network Documentation, QNetworkProtocol, QUrlOperator, and
35 Input/Output and Networking.
36
39 Constructor.
40
41
43 http://doc.trolltech.com/qlocalfs.html
44 http://www.trolltech.com/faq/tech.html
45
47 Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
48 license file included in the distribution for a complete license
49 statement.
50
52 Generated automatically from the source code.
53
55 If you find a bug in Qt, please report it as described in
56 http://doc.trolltech.com/bughowto.html. Good bug reports help us to
57 help you. Thank you.
58
59 The definitive Qt documentation is provided in HTML format; it is
60 located at $QTDIR/doc/html and can be read using Qt Assistant or with a
61 web browser. This man page is provided as a convenience for those users
62 who prefer man pages, although this format is not officially supported
63 by Trolltech.
64
65 If you find errors in this manual page, please report them to qt-
66 bugs@trolltech.com. Please include the name of the manual page
67 (qlocalfs.3qt) and the Qt version (3.3.8).
68
69
70
71Trolltech AS 2 February 2007 QLocalFs(3qt)