當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python ArcGIS Logs.clean用法及代碼示例


本文簡要介紹 python 語言中 arcgis.gis.admin.Logs.clean 的用法。

用法:

clean()

返回:

布爾 True 或 False 說明成功

刪除托管 Portal for ArcGIS 的計算機上的所有日誌文件。此操作允許您釋放磁盤空間。執行該操作後日誌無法恢複。

USAGE: Clean logs from your Portal Admin API

from arcgis.gis import GIS
gis = GIS("https://yourportal.com/portal", "portaladmin", "password")
logs = gis.admin.logs
resp = logs.clean()
print(resp)

# Output
True

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis.admin.Logs.clean。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。