@@ -63,6 +63,9 @@ class UserDataFS(_AppFS):
6363 """
6464 A filesystem for per-user application data.
6565
66+ May also be opened with
67+ ``open_fs('userdata://appname:author:version')``.
68+
6669 :param str appname: The name of the application.
6770 :param str author: The name of the author (used on Windows).
6871 :param str version: Optional version string, if a unique location
@@ -80,6 +83,9 @@ class UserConfigFS(_AppFS):
8083 """
8184 A filesystem for per-user config data.
8285
86+ May also be opened with
87+ ``open_fs('userconf://appname:author:version')``.
88+
8389 :param str appname: The name of the application.
8490 :param str author: The name of the author (used on Windows).
8591 :param str version: Optional version string, if a unique location
@@ -97,6 +103,9 @@ class UserCacheFS(_AppFS):
97103 """
98104 A filesystem for per-user application cache data.
99105
106+ May also be opened with
107+ ``open_fs('usercache://appname:author:version')``.
108+
100109 :param str appname: The name of the application.
101110 :param str author: The name of the author (used on Windows).
102111 :param str version: Optional version string, if a unique location
@@ -114,6 +123,9 @@ class SiteDataFS(_AppFS):
114123 """
115124 A filesystem for application site data.
116125
126+ May also be opened with
127+ ``open_fs('sitedate://appname:author:version')``.
128+
117129 :param str appname: The name of the application.
118130 :param str author: The name of the author (used on Windows).
119131 :param str version: Optional version string, if a unique location
@@ -131,6 +143,9 @@ class SiteConfigFS(_AppFS):
131143 """
132144 A filesystem for application config data.
133145
146+ May also be opened with
147+ ``open_fs('siteconf://appname:author:version')``.
148+
134149 :param str appname: The name of the application.
135150 :param str author: The name of the author (used on Windows).
136151 :param str version: Optional version string, if a unique location
@@ -148,6 +163,9 @@ class UserLogFS(_AppFS):
148163 """
149164 A filesystem for per-user application log data.
150165
166+ May also be opened with
167+ ``open_fs('userlog://appname:author:version')``.
168+
151169 :param str appname: The name of the application.
152170 :param str author: The name of the author (used on Windows).
153171 :param str version: Optional version string, if a unique location
0 commit comments