溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

VB.NET中怎么實(shí)現(xiàn)文件操作

發(fā)布時(shí)間:2021-07-15 11:28:26 來(lái)源:億速云 閱讀:258 作者:Leah 欄目:編程語(yǔ)言

VB.NET中怎么實(shí)現(xiàn)文件操作,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。


1、VB.NET文件操作之判斷光驅(qū)的盤符:

FunctionGetCDROM()\'返回光驅(qū)的盤符(字母)  DimFsoAsNewFileSystemObject\'創(chuàng)建FSO對(duì)象的一個(gè)實(shí)例  DimFsoDriveAsDrive,FsoDrivesAsDrives\'定義驅(qū)動(dòng)器、驅(qū)動(dòng)器集合對(duì)象  SetFsoDrives=Fso.Drives  ForEachFsoDriveInFsoDrives\'遍歷所有可用的驅(qū)動(dòng)器  IfFsoDrive.DriveType=CDRomThen\'如果驅(qū)動(dòng)器的類型為CDrom  GetCDROM=FsoDrive.DriveLetter\'輸出其盤符  Else  GetCDROM="" EndIf  Next  SetFso=Nothing SetFsoDrive=Nothing SetFsoDrives=Nothing EndFunction

2、VB.NET文件操作之判斷文件、文件夾是否存在:

\'返回布爾值:True存在,F(xiàn)alse不存在,filername文件名  FunctionFileExist(filenameAsString)  DimFsoAsNewFileSystemObject  IfFso.FileExists(filename)=TrueThen  FileExist=True Else  FileExist=False EndIf  SetFso=Nothing EndFunction  \'返回布爾值:True存在,F(xiàn)alse不存在,foldername文件夾  FunctionFolderExist(foldernameAsString)  DimFsoAsNewFileSystemObject  IfFso.FolderExists(foldername)=TrueThen  FolderExist=True Else  FolderExist=False EndIf  SetFso=Nothing EndFunction

3、VB.NET文件操作之獲取驅(qū)動(dòng)器參數(shù):

\'返回磁盤總空間大小(單位:M),Drive=盤符A,C,D...  FunctionAllSpace(DriveAsString)  DimFsoAsNewFileSystemObject,DrvAsDrive  SetDrv=Fso.GetDrive(Drive)\'得到Drv對(duì)象的實(shí)例  IfDrv.IsReadyThen\'如果該驅(qū)動(dòng)器存在(軟驅(qū)或光驅(qū)里有盤片,硬盤存取正常)  AllSpace=Format(Drv.TotalSize/(2^20),"0.00")\'將字節(jié)轉(zhuǎn)換為兆  Else  AllSpace=0 EndIf  SetFso=Nothing SetDrv=Nothing EndFunction  \'返回磁盤可用空間大小(單位:M),Drive=盤符A,C,D...  FunctionFreeSpace(drive)  DimFsoAsNewFileSystemObject,drvAsdrive  Setdrv=Fso.GetDrive(drive)  Ifdrv.IsReadyThen  FreeSpace=Format(drv.FreeSpace/(2^20),"0.00")  EndIf  SetFso=Nothing SetDrv=Nothing EndFunction  \'獲取驅(qū)動(dòng)器文件系統(tǒng)類型,Drive=盤符A,C,D...  FunctionFsType(DriveAsString)  DimFsoAsNewFileSystemObject,DrvAsDrive  SetDrv=Fso.GetDrive(Drive)  IfDrv.IsReadyThen  FsType=Drv.FileSystem  Else  FsType="" EndIf  SetFso=Nothing SetDrv=Nothing EndFunction

看完上述內(nèi)容,你們掌握VB.NET中怎么實(shí)現(xiàn)文件操作的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI