Is there a better way to use the multivalue property in a script tool? This code works except when the paths to folders have spaces.# Script arguments CensusDataList = string.split(arcpy.GetParameterAsText(0), ";") #Loop through each state directory in the list to create an input value. for CensusState in CensusDataList: CensusFeaturePath = CensusState + "\\bndrygbs.mdb\\hzCounty" hzCounty_Inputs = hzCounty_Inputs + ";" + CensusFeaturePath
If the paths for CensusDataList are something like: Path 1 Path 2I get 'Path 1';'Path 2' for the list.If the paths are something like: Path1 Path2I get Path1;Path2 for the list.