|
@@ -23,7 +23,7 @@ namespace GFGEditor
|
|
|
for (int i = 0; i < totalCount; i++)
|
|
|
{
|
|
|
string filePath = files[i];
|
|
|
- string fileName = Path.GetFileNameWithoutExtension(filePath);
|
|
|
+ string fileName = Path.GetFileNameWithoutExtension(filePath).Trim();
|
|
|
if (!fileName.Contains("~") && !fileName.StartsWith(".") && fileName != "")
|
|
|
{
|
|
|
EditorUtility.DisplayProgressBar("进度", $"fileNmae{fileName}", 1);
|