///
/// 關於檔案的所有操作類
///
public class fileoption
else
}return true;
}catch
}///
/// 得到檔名
///
///
///
public string getfilename(string filefullpath)
else
}///
/// 得到檔案
///
///
///
///
public string getfilename(string filefullpath, bool includeextention)
else
}else
}///
/// 得到副檔名
///
///
///
public string getfileextent(string filefullpath)
else
}///
/// 是否開啟檔案
///
///
///
public bool opentfile(string filefullpath)
else
}///
/// 得到檔案大小
///
///
///
public string getfilesize(string filefullpath)
else if (filelength > 1024 * 1024)
else
}else
}///
/// 將檔案轉變為位元組
///
///
///
public byte filetostreanbyte(string filefullpath)
return filedata;
}///
///
///
///
///
///
public bool bytetofilestrean(string filefullpath,byte bytesfile)
filestream fs = file.create(filefullpath);
fs.write(bytesfile, 0, convert.toint32(fs.length));
fs.close();
return true;
}catch
}///
/// 序列化
///
///
///
public bool serializexmlfile(string filefullpath)
catch
}///
/// 反序列xml
///
///
///
public bool deserialzexmlfile(string filefullpath)
catch}}
操作資料夾DLL類
資料夾操作類 public class diroption 建立目錄 目錄全路徑 列舉是否刪除 public bool createdir string dirfullpath,operateoption op else if op operateoption.existdelete return ...
Path類 操作檔案類
path類 io命名空間 靜態類 不能建立物件類名.1 string str e c 程式設計基礎入門教程 第十一天 122 22 nee.txt 2 int index str.lastindexof 最後一出現的位置 3 str str.substring index 1 拿到最後乙個檔案 4 ...
fso操作檔案類
else open filename for output as number 覆蓋方式開啟檔案 end if print number,str close number 關閉 end sub 讀取所有行,返回字串陣列 function readalllines filename as string...