EFTScriptSamples/python/eftcom-getusedspace.py

9 lines
238 B
Python
Raw Normal View History

2022-09-13 12:38:57 -05:00
import win32com.client as win32
from pathlib import Path
server = win32.gencache.EnsureDispatch('SFTPCOMInterface.CIServer')
server.ConnectEx('192.168.4.14', 1100, 0, 'a', 'QjIlmT4H')
a = server.ICIClientSettings.GetUsedSpace
print(a)