本文整理汇总了C#中DotNetWikiBot.Page.LoadFromFile方法的典型用法代码示例。如果您正苦于以下问题:C# Page.LoadFromFile方法的具体用法?C# Page.LoadFromFile怎么用?C# Page.LoadFromFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DotNetWikiBot.Page
的用法示例。
在下文中一共展示了Page.LoadFromFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
/// The entry point function. Start coding here.
public static void Main()
{
// Compiled documentation is available in Documentation.chm file.
// A very compehensive DotNetWikiBot usage examples can be found
// in unit testing file called DebugBot.cs:
// http://sourceforge.net/p/dotnetwikibot/svn/HEAD/tree/DebugBot.cs
// Bot scripts repository is being created at
// https://sourceforge.net/apps/mediawiki/dotnetwikibot/index.php?title=BSR
// You are welcome to share your scripts.
// And here you can find some basic usage examples:
Site site = new Site("https://en.wikipedia.org", "YourBotLogin", "YourBotPassword");
//Site site = new Site("http://mywikisite.com", "YourBotLogin", "YourBotPassword");
//Site site = new Site("https://sourceforge.net/apps/mediawiki/YourProjectName/",
//"YourSourceForgeLogin", "YourSourceForgePassword");
site.ShowNamespaces();
Page p = new Page(site, "Wikipedia:Sandbox");
p.LoadWithMetadata();
if (p.Exists())
Console.WriteLine(p.text);
p.SaveToFile("MyArticles\\file.txt");
p.LoadFromFile("MyArticles\\file.txt");
p.ResolveRedirect();
Console.WriteLine(p.GetNamespace());
p.text = "new text";
site.defaultEditComment = "saving test";
site.minorEditByDefault = true;
p.Save();
/**
string[] arr = {"Art", "Poetry", "Cinematography", "Camera", "Image"};
PageList pl = new PageList(site, arr);
pl.LoadWithMetadata();
pl.FillFromAllPages("Sw", 0, true, 100);
pl.SaveTitlesToFile("MyArticles\\list.txt");
pl.FillFromFile("MyArticles\\list.txt");
pl.FillFromCategory("Category:Cinematography");
pl.FillFromLinksToPage("Cinematography");
pl.RemoveEmpty();
pl.RemoveDisambigs();
pl.ResolveRedirects();
Console.WriteLine(pl[2].text);
pl[1].text = "#REDIRECT [[Some Page]]";
pl.FilterNamespaces(new int[] {0,3});
pl.RemoveNamespaces(new int[] {2,4});
pl.Clear();
site.defaultEditComment = "my edit comment";
site.minorEditByDefault = true;
pl.Save();
/**/
}
示例2: FillAndLoadFromFiles
/// <summary>Gets page titles and page texts from all ".txt" files in the specified
/// directory (folder). Each file becomes a page. Page titles are constructed from
/// file names. Page text is read from file contents. If any Unicode numeric codes
/// (also known as numeric character references or NCRs) of the forbidden characters
/// (forbidden in filenames) are recognized in filenames, those codes are converted
/// to characters (e.g. "|" is converted to "|").</summary>
/// <param name="dirPath">The path and name of a directory (folder)
/// to load files from.</param>
public void FillAndLoadFromFiles(string dirPath)
{
foreach (string fileName in Directory.GetFiles(dirPath, "*.txt")) {
Page p = new Page(site, Path.GetFileNameWithoutExtension(fileName));
p.title = p.title.Replace(""", "\"");
p.title = p.title.Replace("<", "<");
p.title = p.title.Replace(">", ">");
p.title = p.title.Replace("?", "?");
p.title = p.title.Replace(":", ":");
p.title = p.title.Replace("\", "\\");
p.title = p.title.Replace("/", "/");
p.title = p.title.Replace("*", "*");
p.title = p.title.Replace("|", "|");
p.LoadFromFile(fileName);
pages.Add(p);
}
}