(1) 我可以这样列出文件夹中的文件:
var parameters = new Dictionary<GetListParameters, string>();
parameters.Add(GetListParameters.Path, "folder1/"); // get items from this specific path
var containerItemList = connection.GetContainerItemList(Settings.ContainerName, parameters);
然而,这:
parameters.Add(GetListParameters.Path, "/");
或这个:
parameters.Add(GetListParameters.Path, "");
不起作用。
如何查询根文件夹中的文件?
(2) 上面的代码返回文件夹中的文件列表。
如何获取文件夹中的文件夹列表?我可以设置任何参数来获取此列表吗?
注意:我知道这是一个“平面”文件系统,类似于 Amazon S3。但是,两者(cloudfiles 和 S3)都提供了一种使用“文件夹”的方法。在 S3 中很容易。在 cloudfiles(使用 .net API)中,我找不到如何执行此操作。
任何提示将不胜感激。