你如何在c#上获得文件列表详细信息

时间:2015-01-07 13:43:39

标签: c# file directory-listing

我目前正在大学做作业,而且我正在为特定任务而苦苦挣扎

显示文件列表后,我需要提示用户输入文件编号以获取该文件的更多详细信息。然后,用户可以输入数字0以跳过此步骤。显示的额外细节应为:

File: notepad.exe
Full file name: C:\Windows\notepad.exe
File size: 93536 bytes
Created: 14/07/2009 12:54:24
Last accessed: 10/08/2009 15:21:05

我正在使用C#我想知道是否有人知道如何指导我正确的步骤?谢谢你

1 个答案:

答案 0 :(得分:8)

对于一般文件信息,如大小,创建和修改时间,请使用FileInfo类。

FileInfo f = new FileInfo(@"C:\Windows\Notepad.exe");
long size = f.Length;
DateTime creation = f.CreationTime;
DateTime modification = f.LastWriteTime;
string name = f.Name; //returns "Notepad.exe"
//etc...

或者,要从完整路径获取文件名,请使用Path类。

string fName = Path.GetFilename(@"C:\Windows\Notepad.exe"); //returns "Notepad.exe"

我会把信息字符串格式化给你。

请注意,FileInfo取决于文件的存在,而Path方法仅处理字符串操作。该文件不需要存在。