Path類 操作檔案類

2022-05-27 05:03:08 字數 943 閱讀 6837

// path類 io命名空間 靜態類 不能建立物件類名.

1

string str =@"

e:\c#程式設計基礎入門教程\(第十一天)\122\22\nee.txt";

2///

/int index=str.lastindexof ("\\")//最後一出現的位置

3///

/str =str.substring (index +1);//拿到最後乙個檔案

4///

/console.writeline(str);

5 console.writeline(path.getfilename(str)); //

獲得檔名包括副檔名

67 console.writeline(path.getfilenamewithoutextension(str)); //

獲得檔名但是不包含副檔名

89 console.writeline(path.getextension(str)); //

獲得檔案的副檔名

1011 console.writeline(path.getdirectoryname(str)); //

獲得檔案所在的資料夾的名稱

1213 console.writeline(path.getfullpath(str)); //

獲得檔案所在的全路徑

1415 console.writeline(path.combine(@"

e:\c#程式設計基礎入門教程\(第十一天)\122\22\

", "

b.txt

")); //

連線兩個字串作為路徑

16 console.readkey();

fso操作檔案類

else open filename for output as number 覆蓋方式開啟檔案 end if print number,str close number 關閉 end sub 讀取所有行,返回字串陣列 function readalllines filename as string...

操作檔案File類方法

檔案操作 file.copy source targetfilename true 檔案拷貝 true 表示當檔案存在時 覆蓋 如果不加 true,則檔案存在報異常。file.exists 判斷檔案是否存在 file.move source target 移動 剪下 思考如何為檔案重新命名?檔案的剪...

操作檔案File類方法

檔案操作 file.copy source targetfilename true 檔案拷貝 true 表示當檔案存在時 覆蓋 如果不加 true,則檔案存在報異常。file.exists 判斷檔案是否存在 file.move source target 移動 剪下 思考如何為檔案重新命名?檔案的剪...