IADsFileServiceOperations 介面 (iads.h)
IADsFileServiceOperations介面是繼承自IADsServiceOperations的雙重介面。 它會擴充功能,如 在 IADsServiceOperations 介面中公開,以跨網路管理檔案服務。 具體而言,它可用來維護及管理檔案服務的開放資源和作用中會話。
繼承
IADsFileServiceOperations介面繼承自IDispatch、IADs 和 IADsServiceOperations。 IADsFileServiceOperations 也有下列類型的成員:
方法
IADsFileServiceOperations介面具有這些方法。
IADsFileServiceOperations::Resources IADsFileServiceOperations::Resources 方法會取得資源物件集合上 IADsCollection 介面指標的指標,代表此檔案服務上目前開啟的資源。 |
IADsFileServiceOperations::Sessions IADsFileServiceOperations::Sessions 方法會在代表此檔案服務的目前開啟會話物件的集合上,取得 IADsCollection 介面指標的指標。 |
備註
若要系結至檔案服務工作物件,請使用 ADsPath 字串來識別主機電腦上的 「LanmanServer」 服務,如下列程式碼範例所示。
Dim fso As IADsFileServiceOperations
On Error Resume Next
' Replace aDomain with the domain that the computer is located on.
' Replace aComputer with the name of the computer.
Set fso = GetObject("WinNT://aDomain/aComputer/LanmanServer")
此時,您可以將檔案服務物件當作服務物件來處理,將 IADsServiceOperations 的任何方法套用至檔案服務物件。 例如,您可以檢查檔案服務的作業狀態、啟動或停止檔案服務,或變更其密碼。
不過, IADsFileServiceOperations 介面可讓您使用檔案服務的開啟資源和使用中會話。 請參閱下列範例。
For Each r in fso.Resources
MsgBox r.User
MsgBox r.Path
MsgBox r.LockCount
Next
如需使用中會話和開啟資源的詳細資訊,請參閱 IADsSession 和 IADsResource。
需求
最低支援的用戶端 | Windows Vista |
最低支援的伺服器 | Windows Server 2008 |
目標平台 | Windows |
標頭 | iads.h |