I have been generating server tile cache manually every time my customer ask.
I knew about ImportTileCache_management function, So here is my question
Can I make server tile cache remotely using ImportTileCache_management function in arcpy?
I am wondering no sample code found in the site how to make it with arcpy.
In the sample code, for example
arcpy.ImportTileCache_management(
"C:/Data/CacheDatasets/Target",
"C:/Data/CacheDatasets/Source",
"4000;2000;1000", "#","MERGE")
Can i use some specific URL or URI for the first parameter? like,
arcpy.ImportTileCache_management(
"remote_machine/Datasets/Target",
"remote_machine/Datasets/Source",
"4000;2000;1000", "#","MERGE")
I deeply thank you in advance