Tagged Questions
3
votes
1answer
59 views
How to add Oracle database connection to AnalyzeforMSD script?
I use this script right now:
import os, arcpy
directory = r"C:\Project"
for root, dirs, files in os.walk(directory):
for myFile in files:
fileExt = os.path.splitext(myFile)[1]
if (fileExt ...
2
votes
1answer
141 views
How to access all mxd files in a folder?
I'm a beginner to Python and am trying to figure out how I can access several mxds in a folder. For example, when I want to use the AnalyzeforMSD function in ArcGIS:
import arcpy
mxd = ...
4
votes
2answers
782 views
Publish MXD to server in ArcObjects C#
I have an MXD that I would like to publish to an ArcGIS server using C# ArcObjects (preferably as an MSD). I have been unable to find anything regarding this. Essentially I would like to implement the ...