c#遍历文件夹下的各种文件
private void ForeachFiles(string path)
{
DirectoryInfo theFolder = new DirectoryInfo(path);
DirectoryInfo[] dirInfo = theFolder.GetDirectories();//获取所在目录的文件夹
FileInfo[] file= theFolder.GetFiles();//获取所在目录的文件
foreach (FileInfo fileItem in file) //遍历文件
{
var fileName = fileItem.Name;//文件名字
var dirName= fileItem.DirectoryName;//文件所在文件夹路径
var sReader = fileItem.OpenText();
var contentStr = sReader.ReadToEnd();//读取文件内容,字符串
sReader.Close();//记得关闭
}
//遍历文件夹
foreach (DirectoryInfo NextFolder in dirInfo)
{
ForeachFiles(NextFolder.FullName);
}
}
将一些log写入到文本文件中:
if (GUILayout.Button("拷贝日志", GUILayout.Width(200)))
{
string log = tipText.ToString();//要写入的字符串
if (!string.IsNullOrEmpty(log))
{
string tempFile = Path.GetTempFileName();//获取一个临时文件名
using (FileStream fs = new FileStream(tempFile, FileMode.Open))
{
fs.Seek(0, SeekOrigin.Begin);
fs.SetLength(0);//将文件流长度设为0,清空其中的内容
StreamWriter sw = new StreamWriter(fs);//专用于特定编码的字符输出
sw.Write(log);//写入
sw.Close();
fs.Close();
}
System.Diagnostics.Process.Start("notepad.exe", tempFile);//打开这个临时文本文件
}
}
fs.Seek(offset, whence);移动文件读取的指针到指定位置
offset:开始的偏移量,也就是代表需要移动偏移的字节数
whence:给offset参数一个定义,表示要从哪个位置开始偏移;0代表从文件开头开始算起,1代表从当前位置开始算起,2代表从文件末尾算起。whence值为空没设置时会默认为0。
System.Diagnostics.Process.Start(); 能做什么呢?它主要有以下几个功能:
1、打开某个链接网址(弹窗)。
2、定位打开某个文件目录。
3、打开系统特殊文件夹,如“控制面板”等。
可见这篇博客:
http://t.csdn.cn/Q6G93
在editor上想输出一些log:
private StringBuilder tipText = new StringBuilder();
private void PopupTipText(string newTip)
{
var time = System.DateTime.Now.ToLongTimeString();
if (tipText == null)
tipText = new StringBuilder();
tipText.Insert(0, time + "---" + newTip + "\n");
}
一些读取目录的方法:
Application.streamingAssetsPath:普通资源目录
详细的一些资料:http://t.csdn.cn/UbefR
AkBasePathGetter.DefaultBasePath:wwwise的资源文件路径
读取xml文件内容相关:
比如下列是读取音频相关内容:
public static void GetWwiseProjectConfigStateData(out Dictionary<string, List<string>> audioConfigDict, string xmlPath)
{
audioConfigDict = new Dictionary<string, List<string>>();
string path = xmlPath;
if (File.Exists(path))
{
var doc = new System.Xml.XmlDocument();
doc.Load(path);
var StateGroups = doc.GetElementsByTagName("StateGroup");
for (var i = 0; i < StateGroups.Count; i++)
{
var nameStateGroups = StateGroups[i].Attributes["Name"].Value;//获取标签名name对应的内容
var nameStateList = new List<string>();
var States = StateGroups[i].SelectNodes("States");
for (var j = 0; j < States.Count; j++)
{
var State = States[j].SelectNodes("State");
for (var k = 0; k < State.Count; k++)
{
var nameState = State[k].Attributes["Name"].Value;
nameStateList.Add(nameState);
if (audioConfigDict.ContainsKey(nameStateGroups) )
{
audioConfigDict[nameStateGroups] = nameStateList;
}
else
{
audioConfigDict.Add(nameStateGroups, nameStateList);
}
}
}
}
}
}
XmlDocument支持使用xpath表达式选择文档中节点,方法:
SelectNodes(String expression)
SelectSingleNode(string expression)
SelectNodes 返回符合expression表达式的所有元素,返回值为XmlNodeList,比如:
XmlNodeList nodelist = xmlDoc.SelectNodes(“/CameraGroup/Camera”);//获取所有的Camera节点。
SelectSingleNode只返回第一个符合expression表达式的节点,如果没有返回null值。文章来源:https://www.toymoban.com/news/detail-430321.html
读取一些表格:
public static List excelConfig = new List();文章来源地址https://www.toymoban.com/news/detail-430321.html
public static Excel.ExcelTable GetExcelTable(string excelFileName, string tableName)
{
string excelPath = string.Format("/configs/{0}.xlsx", excelFileName);
var excel = new Excel.Excel(excelPath );
return excel.GetTable(tableName);
}
excelConfig.Add(GetExcelTable("表格名字", "表格分栏的sheet名字"));
到了这里,关于c#关于文件夹/文件/文本读取遍历,写入还有表格的读取的一些方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!