123 def supportsLocalFileAccess(self): |
123 def supportsLocalFileAccess(self): |
124 """ |
124 """ |
125 Public method to indicate file access via a local directory. |
125 Public method to indicate file access via a local directory. |
126 |
126 |
127 @return flag indicating file access via local directory |
127 @return flag indicating file access via local directory |
128 @type bool |
128 @rtype bool |
129 """ |
129 """ |
130 return self.__deviceVolumeMounted() |
130 return self.__deviceVolumeMounted() |
131 |
131 |
132 def __deviceVolumeMounted(self): |
132 def __deviceVolumeMounted(self): |
133 """ |
133 """ |