Using following code, I am able to get all services in the System folders.
sys_services = server1.services.list(folder='System')
Is there any way that we can also track the container folder names as in ['Hosted', 'System', 'Utilities', '/']?
for service in sys_services:
print(service.serviceName + " located at"+ <folder>)