您好,登錄后才能下訂單哦!
VB.NET中怎么實現文件操作,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
1、VB.NET文件操作之判斷光驅的盤符:
FunctionGetCDROM()\'返回光驅的盤符(字母) DimFsoAsNewFileSystemObject\'創建FSO對象的一個實例 DimFsoDriveAsDrive,FsoDrivesAsDrives\'定義驅動器、驅動器集合對象 SetFsoDrives=Fso.Drives ForEachFsoDriveInFsoDrives\'遍歷所有可用的驅動器 IfFsoDrive.DriveType=CDRomThen\'如果驅動器的類型為CDrom GetCDROM=FsoDrive.DriveLetter\'輸出其盤符 Else GetCDROM="" EndIf Next SetFso=Nothing SetFsoDrive=Nothing SetFsoDrives=Nothing EndFunction
2、VB.NET文件操作之判斷文件、文件夾是否存在:
\'返回布爾值:True存在,False不存在,filername文件名 FunctionFileExist(filenameAsString) DimFsoAsNewFileSystemObject IfFso.FileExists(filename)=TrueThen FileExist=True Else FileExist=False EndIf SetFso=Nothing EndFunction \'返回布爾值:True存在,False不存在,foldername文件夾 FunctionFolderExist(foldernameAsString) DimFsoAsNewFileSystemObject IfFso.FolderExists(foldername)=TrueThen FolderExist=True Else FolderExist=False EndIf SetFso=Nothing EndFunction
3、VB.NET文件操作之獲取驅動器參數:
\'返回磁盤總空間大小(單位:M),Drive=盤符A,C,D... FunctionAllSpace(DriveAsString) DimFsoAsNewFileSystemObject,DrvAsDrive SetDrv=Fso.GetDrive(Drive)\'得到Drv對象的實例 IfDrv.IsReadyThen\'如果該驅動器存在(軟驅或光驅里有盤片,硬盤存取正常) AllSpace=Format(Drv.TotalSize/(2^20),"0.00")\'將字節轉換為兆 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 \'獲取驅動器文件系統類型,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
看完上述內容,你們掌握VB.NET中怎么實現文件操作的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。