C# 文件操作函數 創立文件 斷定存在。本站提示廣大學習愛好者:(C# 文件操作函數 創立文件 斷定存在)文章只能為提供參考,不一定能成為您想要的結果。以下是C# 文件操作函數 創立文件 斷定存在正文
文件創立:
File.Create(Application.StartupPath + "\\AlarmSet.txt");//創立該文件
System.IO.Path.GetFileName(filePath) //前往帶擴大名的文件名
System.IO.Path.GetFileNameWithoutExtension(filePath) //前往不帶擴大名的文件名
System.IO.Path.GetDirectoryName(filePath) //前往文件地點目次
文件存在:
File.Exists(Application.StartupPath + "\\AlarmSet.txt")
System.IO.DirectoryInfo info = new System.IO.DirectoryInfo(Application.StartupPath + "\\AlarmSet.txt");
MessageBox.Show(info.Exists.ToString());
是否是很簡略,但有時刻我們能夠對GetFileNameWithoutExtension或GetDirectoryName如許的函數,感到比擬生疏,之前還總傻傻的本身寫函數完成,本來就一行代碼弄定啊~