private void ExportBtn_clicked()
        {
            string resultPath = EditorTools.OpenFolderPanel("Export XML", "Assets/");

            if (resultPath != null)
            {
                AssetBundleCollectorConfig.ExportXmlConfig($"{resultPath}/{nameof(AssetBundleCollectorConfig)}.xml");
            }
        }
        private void ImportBtn_clicked()
        {
            string resultPath = EditorTools.OpenFilePath("Import XML", "Assets/", "xml");

            if (resultPath != null)
            {
                AssetBundleCollectorConfig.ImportXmlConfig(resultPath);
                RefreshWindow();
            }
        }