Delphi 檔案操作的封裝

2021-06-01 01:08:26 字數 949 閱讀 3292

unit fileoper;

inte***ce

uses windows,shellapi,sysutils;

type

tfileoper =class

public

class  function winerasefile(owner: integer; wichfiles: string; sendtorecyclebin, confirm: boolean): boolean;

class  function winerasepath(owner: integer; wichfiles: string; sendtorecyclebin, confirm: boolean): boolean;

class  function winmovepath(owner:integer;fromfile, tofile:string;renameoncollision, confirm:boolean):boolean;

class  function winmovefile(owner:integer;fromfile, tofile:string;renameoncollision, confirm:boolean):boolean;

class  function wincopypath(owner: integer; fromfile, tofile: string;renameoncollision, confirm: boolean): boolean;

class  function wincopyfile(owner: integer; fromfile, tofile: string;renameoncollision, confirm: boolean): boolean;

class  function isfileinuse(fname: string): boolean;

end;

implementation

end.

Delphi 操作Ini檔案

delphi提供了乙個tinifile類,使我們可以非常靈活的處理ini檔案 一 ini檔案的結構 小節名 ini檔案 關鍵字1 值1 關鍵子2 值2 ini檔案允許有多個小節,每個小節又允許有多個關鍵字,後面是該關鍵字的值。值的型別有三種 字串 整型數值和布林值。其中字串存貯在ini檔案中時沒有引...

delphi操作ini檔案

如何操作ini檔案?ini 檔案在系統配置及應用程式引數儲存與設定方面,具有很重要的作用,所以視覺化的程式設計一族,如 vb vc vfp delphi 等都提供了讀寫 ini 檔案的方法,其中delphi中操作 ini 檔案,最為簡潔,這是因為delphi3提供了乙個 tinifile 類,使我們...

Delphi 中檔案的操作FileOpen

var ifilehandle integer ifilelength integer ibytesread,i integer buffer char strpath string begin 取得檔案路徑 讀取檔案內容 ifilehandle fileopen strpath,fmopenrea...