AcManager.Tools.ContentInstallation.DirectoryContentInstallator.GetBaseId C# (CSharp) Method

GetBaseId() protected method

protected GetBaseId ( ) : string
return string
        protected override string GetBaseId() {
            var id = Path.GetFileName(Directory)?.ToLower();
            return AcStringValues.IsAppropriateId(id) ? id : null;
        }