獲取文件的版本信息:
FileVersionInfo myFileVersionInfo
textBox
更改文件屬性
下例欲將E:\test
//File
//當destinationFile已經存在時
//因此先刪除destination文件
//因此
//先把文件屬性重置為Normal
string file
string destinationFile=
if(File
{
FileInfo fi=new FileInfo(destinationFile);
if(fi
fi
File
}
File
C#中字符串的格式化及轉換成數值的方法
字符串轉換成數字
string str=
int i=Convert
格式化字符串
String str=
str=str
按行讀寫文件
判斷文件是否存在:File
判斷目錄是否存在:Directory
按行讀取文件
int fileCount=
// Open the file just specified such that no one else can use it
StreamReader sr = new StreamReader(textBox
while(sr
{
listBox
fileCount++;
}
sr
按行寫入文件
StreamWriter sw = new StreamWriter(
for(int i=
{
sw
}
文件目錄對話框的使用
文件對話框即過濾條件的使用
string resultFile=
OpenFileDialog openFileDialog
openFileDialog
openFileDialog
openFileDialog
openFileDialog
if(openFileDialog
resultFile=openFileDialog
目錄對話框的使用
string resultFolder=
FolderBrowserDialog openFolderDialog
openFolderDialog
if(openFolderDialog
resultFolder=openFolderDialog
From:http://tw.wingwit.com/Article/program/net/201311/11351.html