diff --git a/powershell/REST API/REST-Basic-Connection-Template.ps1 b/powershell/REST API/REST-Basic-Connection-Template.ps1 old mode 100755 new mode 100644 diff --git a/powershell/REST API/REST-Get-Server-Information.ps1 b/powershell/REST API/REST-Get-Server-Information.ps1 old mode 100755 new mode 100644 diff --git a/powershell/REST API/REST-testing.ps1 b/powershell/REST API/REST-testing.ps1 old mode 100755 new mode 100644 diff --git a/python/REST API/REST-connection.py b/python/REST API/REST-connection.py old mode 100755 new mode 100644 diff --git a/python/REST API/REST-move-user.py b/python/REST API/REST-move-user.py old mode 100755 new mode 100644 diff --git a/python/eftcom-getusedspace.py b/python/eftcom-getusedspace.py new file mode 100644 index 0000000..82f1c7d --- /dev/null +++ b/python/eftcom-getusedspace.py @@ -0,0 +1,9 @@ +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) \ No newline at end of file