Azavea.NijPredictivePolicing.ACSAlchemistLibrary.FileLocator.GetStateBlockGroupDataDir C# (CSharp) Method

GetStateBlockGroupDataDir() public static method

Returns the path to the directory where the raw data files for a given should be extracted/read from
public static GetStateBlockGroupDataDir ( AcsState state ) : string
state AcsState
return string
        public static string GetStateBlockGroupDataDir(AcsState state)
        {
            string filePath = FileLocator.GetStateBlockGroupDataFilePath(state);
            string basePath = Path.GetDirectoryName(filePath);

            //IMPORTANT!  Don't create this directory on disk, just the path string!
            return FileUtilities.PathCombine(basePath, state.ToString());
        }