c#的SDK里面,LIST的接口在哪儿里,如何调用

新手上路,请多包涵

项目里面没有找到对应的LIST的接口函数,我想遍历某个空间里面的所有文件,并重命名,请给与SDK里对应的接口函数,谢谢

阅读 2.2k
1 个回答
参考demo,
public void List(string bucket, string content)
       {
           Qiniu.RSF.RSFClient rsf = new Qiniu.RSF.RSFClient(bucket);
           rsf.Prefix = content;
           rsf.Limit = 100;
           List items;

           while ((items = rsf.Next()) != null)
           {
               ArrayList str = new ArrayList();
               textBox3.Text = null;
               foreach (var i in items)
               {
                   Console.WriteLine(i.Key);
                  
                       str.Add(i.Key);
                       textBox3.Text+= i.Key;
                       Console.WriteLine("集合keys");


               }

               if (str != null)
               {
                   BatchDelete(bucket, str);
                   Console.WriteLine("循环结束");
               }
           }
       }

public void BatchDelete(string bucket, ArrayList keys)
       {
           RSClient client = new RSClient();
           List EntryPaths = new List();
           foreach (string key in keys)
           {
               Console.WriteLine("\n===> Stat {0}:{1}", bucket, key);
               EntryPaths.Add(new EntryPath(bucket, key));
           }
           client.BatchDelete(EntryPaths.ToArray());
       }
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进