C#自动化IO/XML作业
PS:这是我们公司自动化测试留的一个作业,虽然我不是自动化的,但是也做了一下。
这个也是我根据自动化部门的那次作业自己分析写的,没有写打log的过程,细化的时候再判断再分析吧,主要目的是学习C#。本次的内容是一个窗体程序:遍历指定目录下的文件;将文件信息存入XML中;将XML中的路径结构还原到指定目录下;如果扩展写的话还可以进行数据的备份和还原。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Xml;
using System.Text.RegularExpressions;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
//Blank
}
private void BackUp_Click(object sender, EventArgs e)
{
string path = CheckOutPath.Text.ToString();
//Create XML
CreateXML();
GetAllFiles(path);
}
//Get all files under the path
private void GetAllFiles(string path)
{
DirectoryInfo dir = new DirectoryInfo(@path);
FileInfo[] files = dir.GetFiles();
//Store files into XML
StoreIntoXML(dir.Parent.ToString(), files);
DirectoryInfo[] subDirs = dir.GetDirectories();
//Store subdirs into XML
StoreIntoXML(dir.Parent.ToString(),subDirs);
foreach (DirectoryInfo subDir in subDirs) {
string subPath = subDir.FullName;
GetAllFiles(subPath);
}
}
//Create the XML under the XMLForBackUpPath
private void CreateXML()
{
string XMLPath = XMLForBackUpPath.Text.ToString();
XmlDocument xml = new XmlDocument();
xml.LoadXml("<XML></XML>");
string filePath = Path.Combine(XMLPath,"BackUp.XML");
xml.Save(@filePath);
}
//Store subdirs into XML
private void StoreIntoXML(string parentDir,DirectoryInfo[] subDirs)
{
//Load the XML
string XMLPath = XMLForBackUpPath.Text.ToString();
string filePath = Path.Combine(XMLPath, "BackUp.XML");
XmlDocument xml = new XmlDocument();
xml.Load(@filePath);
//Append the child node to parentDir if possible
foreach (DirectoryInfo subDir in subDirs)
{
XmlElement subNode = xml.CreateElement("FolderNode");
xml.DocumentElement.AppendChild(subNode);
subNode.SetAttribute("type", "folder");
subNode.SetAttribute("path", subDir.FullName.ToString());
subNode.SetAttribute("name", subDir.ToString());
subNode.SetAttribute("parent", parentDir);
}
xml.Save(@filePath);
}
//Store files into XML
private void StoreIntoXML(string parentDir,FileInfo[] files)
{
//Load the XML
string XMLPath = XMLForBackUpPath.Text.ToString();
string filePath = Path.Combine(XMLPath, "BackUp.XML");
XmlDocument xml = new XmlDocument();
xml.Load(@filePath);
//Append the child node to parentDir if possible
foreach (FileInfo file in files)
{
XmlElement subNode = xml.CreateElement("FileNode");
xml.DocumentElement.AppendChild(subNode);
subNode.SetAttribute("type", "file");
subNode.SetAttribute("name", file.ToString());
subNode.SetAttribute("path", file.FullName.ToString());
subNode.SetAttribute("parent",parentDir);
}
xml.Save(@filePath);
}
private void Restore_Click(object sender, EventArgs e)
{
//Restore
string RestorePath=XMLForRestorePath.Text.ToString();
RestoreSolution(RestorePath);
}
//Restore the file system structure from the XML
private void RestoreSolution(string path)
{
XmlDocument XMLForRestore = new XmlDocument();
XMLForRestore.Load(@path);
XmlNodeList nodeLists = XMLForRestore.DocumentElement.ChildNodes;
foreach(XmlElement ele in nodeLists)
{
if (ele.GetAttribute("type") == "folder")
{
if (!System.IO.Directory.Exists(@ele.GetAttribute("path")))
{
Directory.CreateDirectory(@ele.GetAttribute("path"));
}
}
}
}
}
}
C#自动化IO/XML作业的更多相关文章
- IO流作业
IO流作业 一. 填空题 Java IO流可以分为 字节流 和处理流两大类,其中前者处于IO操作的第一线,所有操作必须通过他们进行. 输入流的唯一目的是提供通往数据的通道 ...
- 2017.12.20 Java中的 IO/XML学习总结 File类详细
IO / XML 一.File类 1.定义/概念 Java是面向对象的语言,要想把数据存到文件中,就必须要有一个对象表示这个文件.File类的作用就是代表一个特定的文件或目录,并提供了若干方法对这些文 ...
- python接口自动化-发xml格式post请求
前言 post请求相对于get请求多一个body部分,body部分常见的数据类型有以下四种(注意是常见的,并不是只有4种) application/x-www-form-urlencoded appl ...
- javaee IO流作业02
package Zy; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.Fil ...
- javaee IO流作业
package Zy; import java.io.Serializable; public class Student implements Serializable{ private stati ...
- 老男孩python自动化运维作业2
拿到要求真不知道怎么写,不能还要写个商城页面吧: 最后还是用了input()模拟用户操作吧- -!不就操作个字典吗(字典模拟商品数据). python版本: >>>import sy ...
- 老男孩python自动化运维作业1
#!/usr/bin/env pthon #字典操作三级菜单 “b”返回上一级菜单,“q”退出. menu={"BJ":{"cp":{1:1,2:2,3:3}, ...
- 简单Java类与XML之间的转换
需要的jar包:xmlpull_1_0_5.jar,xstream-1.4.1.jar) 1.工具类XstreamUtil package com.learn.util; import com.tho ...
- JAVA对象和XML文档、原来他们之间还有这一出
最近项目开发中遇到一个问题,访问接口不再通过url地址请求的方式,而是 通过socket发送xml格式的报文到指定服务器来进行信息的统一认证.. 因此组装xml格式的报文字符串以及解析服务器返回的xm ...
随机推荐
- Object-C 入门
该文章转载自:http://sheng.iteye.com/blog/775588一:Objective-C入门 .Cocoa的组成 苹果公司将Cocoa.Carbon.QuickTime和OpenG ...
- STL lower_bound upper_bound binary-search
STL中的二分查找——lower_bound .upper_bound .binary_search 二分查找很简单,原理就不说了.STL中关于二分查找的函数有三个lower_bound .upper ...
- javascript 判断浏览器的ie版本,替换html标签
/* var browser=navigator.appName var b_version=navigator.appVersion var version=b_version.split(&quo ...
- JSP动作跳转页面的时候与根目录的问题
在JSP动作:<jsp:forward page="....">中,这个page属性所指定的页面要包含根目录的话,必须要用"/",不能够用" ...
- String.Format数字格式化参考
String.Format数字格式化输出 {0:N2} {0:D2} {0:C2} (转) 数字 {0:N2} 12.36 数字 {0:N0} 13 货币 {0:c2} $12.36 货币 {0:c4 ...
- java使用ffmpeg和mencoder做视频格式转换
首发:个人博客,持续更新和纠错 主要使用技术:1)FFmpeg,用于主流格式之间的转换,例如AVI,MP4,FLV等.2)MEncoder,用于奇葩格式转主流格式,例如RMVB转AVI.这样我们可以把 ...
- 数据库性能优化:SQL索引
SQL索引在数据库优化中占有一个非常大的比例, 一个好的索引的设计,可以让你的效率提高几十甚至几百倍,在这里将带你一步步揭开他的神秘面纱. 1.1 什么是索引? SQL索引有两种,聚集索引和非聚集索引 ...
- VS2010 发布网站时文件丢失
问题:使用VS发布网站时,发现一些Flv等文件丢失,没有发布到指定文件夹中. 解决办法:打开文件属性窗口,找到生成操作,选项选择“内容”即可. 详细内容可参考官方文档: http://msdn.m ...
- Ubuntu 安装 “宋体,微软雅黑,WPS Office的symbol、wingdings、wingdings 2、wingdings 3、webding字体,Consolas雅黑混合版编程字体” 等 Windows 7 下的字体(转)
Windows平台下,"宋体"."微软雅黑"."Courier New(编程字体)"用的比较多,看的也习惯了.那如何在 Ubuntu下也安装 ...
- 161124、Java 异常处理的误区和经验总结
本文着重介绍了 Java 异常选择和使用中的一些误区,希望各位读者能够熟练掌握异常处理的一些注意点和原则,注意总结和归纳.只有处理好了异常,才能提升开发人员的基本素养,提高系统的健壮性,提升用户体验, ...