1189 if FileSystemUtilities.isRemoteFileName(self.ppath) |
1189 if FileSystemUtilities.isRemoteFileName(self.ppath) |
1190 else os.path.dirname(fn) |
1190 else os.path.dirname(fn) |
1191 ) |
1191 ) |
1192 if dn and dn not in self.subdirs: |
1192 if dn and dn not in self.subdirs: |
1193 self.subdirs.append(dn) |
1193 self.subdirs.append(dn) |
1194 |
|
1195 # get the names of other subdirectories |
|
1196 for fn in self.__pdata["OTHERS"]: |
|
1197 dn = ( |
|
1198 self.__remotefsInterface.dirname(fn) |
|
1199 if FileSystemUtilities.isRemoteFileName(fn) |
|
1200 else os.path.dirname(fn) |
|
1201 ) |
|
1202 if dn and dn not in self.otherssubdirs: |
|
1203 self.otherssubdirs.append(dn) |
|
1204 |
1194 |
1205 return res |
1195 return res |
1206 |
1196 |
1207 def __writeProject(self, fn=None): |
1197 def __writeProject(self, fn=None): |
1208 """ |
1198 """ |