1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace 修改文件创建日期或修改日期 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } string path = "" ; private void button1_Click( object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); ofd.Title = "请选择要打开的文件" ; ofd.Multiselect = false ; //ofd.InitialDirectory = @"C:\Uss\shaofeng\Desktop"; ofd.Filter = "文本文件|*.txt|所有文件|*.*" ; ofd.ShowDialog(); path = ofd.FileName; if (path== "" ) { return ; } textBox1.Text = Path.GetFileName( path); FileInfo file = new FileInfo(path); textBox2.Text = "创建时间:" + file.CreationTime.ToString() + "\r\n修改时间:" + file.LastWriteTime.ToString() + "\r\n访问时间:" + file.LastAccessTime.ToString(); } private void button2_Click( object sender, EventArgs e) { string strCuang = tboCuang.Text; string strXou = tboXou.Text; string strFw = tboFw.Text; if (path== "" ) { return ; } FileInfo file = new FileInfo(path); try { int [] cj = strToNumTime(strCuang); int [] xg = strToNumTime(strXou); int [] fw = strToNumTime(strFw); file.CreationTime = new DateTime(cj[0], cj[1], cj[2], cj[3], cj[4], cj[5]); file.LastWriteTime = new DateTime(xg[0], xg[1], xg[2], xg[3], xg[4], xg[5]); file.LastAccessTime = new DateTime(fw[0], fw[1], fw[2], fw[3], fw[4], fw[5]); } catch { } finally { textBox3.Text = "创建时间:" + file.CreationTime.ToString() + "\r\n修改时间:" + file.LastWriteTime.ToString() + "\r\n访问时间:" + file.LastAccessTime.ToString(); } } private static int [] strToNumTime( string str) { string [] cjTime = str.Split( new char [] { ' ' , '/' , ':' }, StringSplitOptions.RemoveEmptyEntries); int [] cj = new int [cjTime.Length]; for ( int i = 0; i < cjTime.Length; i++) { cj[i] = Convert.ToInt32(cjTime[i]); } return cj; } } } |
独学而无友,则孤陋而寡闻。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix