mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
* This is an initial basic experimental code for inventory import and export from the region server * Probably not yet ready for general use * Thanks Kayne!
This commit is contained in:
@@ -316,6 +316,21 @@ namespace OpenSim.Framework.Communications.Cache
|
||||
return folderList;
|
||||
}
|
||||
|
||||
public List<InventoryFolderImpl> RequestListOfFolderImpls()
|
||||
{
|
||||
List<InventoryFolderImpl> folderList = new List<InventoryFolderImpl>();
|
||||
|
||||
lock (SubFolders)
|
||||
{
|
||||
foreach (InventoryFolderImpl folder in SubFolders.Values)
|
||||
{
|
||||
folderList.Add(folder);
|
||||
}
|
||||
}
|
||||
|
||||
return folderList;
|
||||
}
|
||||
|
||||
public int TotalCount
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user