文件對象代表了一個文件,而且有一些非常有用的方法來檢驗一個文件的存在以及重命名和刪除一個文件。例如:
Dim fl as File
fl=new File("foo.txt")
if(fl.Exists) 'if the file exists
fl.Delete 'delete it
End If
用戶也可以使用File對象來獲取一個FileStream對象,然後通過使用FileStream對象來讀寫文件數據:
Dim ts as TextStream
Dim fs as FileStream
ts=fl.OpenText 'open a text file for reading
fs=fl.OpenRead 'open any file for reading
(1)讀取一個文本文件(TextFile)
為了讀取一個文本文件,用戶可以使用File對象去獲取一個StreamReader對象,然後使用文本流(text stream)的讀取方法:
Dim ts as StreamReader
ts=fl.OpenText()
s=ts.readLine
(2)寫一個文本文件(Write a Text File)
要建立和寫一個文本文件,用戶可以用CreateText方法得到一個StreamWrite對象,然後進行操作,比如:
Dim sw as streamWriter
sw=fl.CreateText
sw.writeLine("write text into file")
如果用戶想對一個已經存在的文件進行操作,可以使用一個帶有邏輯參數的對象來進行操作:
sw=new StreamWriter(path,true)