文字檔案從磁碟讀取 寫入

2021-08-27 14:28:10 字數 1760 閱讀 4460

using

system;

using

system.text;

using

system.io;

namespace

***x.common }

return

result; }

///

///寫入文字檔案,按預設編碼

//////文字檔案路徑包括檔名

///寫入內容

public

static

void

write(

string

filepath,

string

content) }

///

///寫入文字檔案,以uft8格式編碼

//////文字檔案路徑包括檔名

///寫入內容

///public

static

void

write(

string

filepath,

string

content,

bool

utf8) }

///

///備份檔案

//////原始檔路徑

///目標檔案路徑

///是否覆蓋已存在檔案

///public

static

bool

backupfile(

string

sourcefilename,

string

destfilename,

bool

overwrite) if

(!overwrite&&file.exists(destfilename))

trycatch

(exceptionexception)

return

flag; }

///

///拷貝資料夾檔案

//////

///public

static

void

copydirfiles(

string

srcdir,

string

dstdir)

foreach

(string

str3

indirectory.getdirectories(srcdir)) }

}///

///刪除資料夾檔案

//////

public

static

void

deletedirfiles(

string

dir)

foreach

(string

str2

indirectory.getdirectories(dir)) }

}///

///獲得檔案最後修改時間

//////

///public

static

datetimegetfilelastwritetime(

string

file)

return

datetime.maxvalue; }

///

///取消檔案的唯讀屬性

//////

public

static

void

removefilereadonlyattribute(

string

file) }

}

c 讀取 寫入 文字檔案

include include 讀寫檔案的標頭檔案 include using namespace std 1 文字檔案 寫檔案 1 包含標頭檔案 include 2 建立流物件 ofstream ofs 3 指定路徑和開啟方式 ofs.open 路徑,開啟方式 開啟方式 ios in 讀檔案開啟 ...

讀取和寫入文字檔案

read a text file 的這篇文章部分描述如何使用streamreader類來讀取文字的檔案。write a text file example 1 和 write a text file example 2 在各節說明了如何使用streamwriter類來向檔案寫入文字。讀取文字檔案 若...

vb讀取和寫入文字檔案

dim flname as string dim ofilenum as long dim sline as string dim ifilenum as long flname c dxfelement.dat if dir flname then kill flname end if ofile...