寫檔案操作 VB

2021-04-06 20:50:06 字數 734 閱讀 5606

'寫檔案操作

public function writefile(strwhat as string, strfilepath as string, strfilename as string) as boolean

writefile = false

dim fso as new filesystemobject

dim ffile as file

dim ts as textstream

on error goto errorhandl

dim txtfile as string

dim intflag as integer

txtfile = strfilepath & strfilename

intflag = 8

if fso.fileexists(txtfile) = false then

fso.createtextfile txtfile, true

intflag = 2

end if

set ffile = fso.getfile(txtfile)

set ts = ffile.openastextstream(intflag, -2)

ts.writeline (strwhat)

ts.close

writefile = true

exit function

errorhandl:

end function

vb檔案操作函式

1 open 檔名 for方式 access存取型別 鎖定 as 檔案號 len 記錄長度 功能 為檔案的輸入輸出分配緩衝區,並確定緩衝區所使用的存取方式 說明 1 方式 指定檔案的輸入輸出方式,可選,預設是random,可以是以下值 a output 指定順序輸出方式,將覆蓋原有內容 b inpu...

VB操作excel檔案

1 資料夾建立 set fso createobject scripting.filesystemobject if fso.folderexists 資料夾全路徑名 then 存在else 不存在,則建立資料夾 set f fso.createfolder 資料夾全路徑名 endif 2 判斷檔案...

VB操作excel檔案

1 資料夾建立 set fso createobject scripting.filesystemobject if fso.folderexists 資料夾全路徑名 then 存在else 不存在,則建立資料夾 set f fso.createfolder 資料夾全路徑名 endif 2 判斷檔案...

C 寫檔案操作

程式執行時產生的資料都屬於臨時資料,程式一旦執行結束都會被釋放 通過檔案可以將資料持久化 c 中對檔案操作需要包含標頭檔案 檔案型別分為兩種 1.文字檔案 檔案以文字的ascll碼形式儲存在計算機中 2.二進位制檔案 檔案以文字的二進位制形式儲存在計算機中,使用者一般不能直接讀懂他們 5.1文字檔案...

python 檔案操作,讀檔案,寫檔案

讀取檔案的全部內容 def get f none try f open 致橡樹.txt r encoding utf 8 print f.read except filenotfounderror print 無法開啟指定的檔案 except lookuperror print 指定了未知的編碼 e...