Wikipedia:Projekt DotNetWikiBot Framework/Lavallen/Radera urval av index
Utseende
using System; using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Collections; using System.Xml; using System.Threading; using DotNetWikiBot; class MyBot : Bot { public static void Main() { Site site = new Site("http://sv.wikisource.org", "Lavallen", "********"); for(int i=86;i<=377;i++) { string fil="Sida:Bref och skrifvelser af och till Carl von Linné (1910).djvu/"+i; Page myPage = new Page(site, fil); myPage.Load(); if(myPage.Exists()) { string catter5 = myPage.GetAllCategories()[0]; Console.WriteLine(catter5); if(catter5 == "Kategori:Ej korrekturläst") { myPage.Delete("Se indexdisk"); Thread.Sleep(5000); } } } } }