您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在C#中处理文件操作,你可以使用System.IO命名空间下的类
using System.IO;
public string ReadFile(string path)
{
string content = string.Empty;
if (File.Exists(path))
{
using (StreamReader reader = new StreamReader(path))
{
content = reader.ReadToEnd();
}
}
return content;
}
using System.IO;
public void WriteFile(string path, string content)
{
if (!Directory.Exists(Path.GetDirectoryName(path)))
{
Directory.CreateDirectory(Path.GetDirectoryName(path));
}
using (StreamWriter writer = new StreamWriter(path))
{
writer.WriteLine(content);
}
}
using System.IO;
public void AppendFile(string path, string content)
{
if (!File.Exists(path))
{
WriteFile(path, content);
}
else
{
using (StreamWriter writer = new StreamWriter(path, true))
{
writer.WriteLine(content);
}
}
}
using System.IO;
public void DeleteFile(string path)
{
if (File.Exists(path))
{
File.Delete(path);
}
}
using System.IO;
public void RenameFile(string oldPath, string newPath)
{
if (File.Exists(oldPath))
{
File.Move(oldPath, newPath);
}
}
using System.IO;
public bool FileExists(string path)
{
return File.Exists(path);
}
using System.IO;
public FileInfo GetFileInfo(string path)
{
return new FileInfo(path);
}
这些示例展示了如何在C#中执行基本的文件操作。你可以根据需要调整这些方法以满足你的需求。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。