参考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()); }