@@ -48,9 +48,10 @@ internal class FileUtils {
48
48
49
49
/// <summary>
50
50
/// Regex to match packages folder like "Library/PackageCache/com.company.pkg"
51
+ /// or "Library/PackageCache/com.company.pkg@version"
51
52
/// </summary>
52
53
private static Regex PACKAGES_PHYSICAL_PATH_REGEX =
53
- new Regex ( @"^(Library[/\\]PackageCache[/\\])([^/\\]+)(@[^/\\]+)[/\\](.*)?$" ) ;
54
+ new Regex ( @"^(Library[/\\]PackageCache[/\\])([^/\\]+)(@[^/\\]+)? [/\\](.*)?$" ) ;
54
55
55
56
/// <summary>
56
57
/// Returns the project directory (e.g contains the Assets folder).
@@ -448,7 +449,9 @@ public static string GetPackageDirectory(
448
449
// work if the package is installed from a local tarball or from a registry
449
450
// server.
450
451
string absolutePath = Path . GetFullPath ( packageDir ) ;
451
- packageDir = absolutePath . Substring ( ProjectDirectory . Length + 1 ) ;
452
+ if ( absolutePath . StartsWith ( ProjectDirectory ) ) {
453
+ packageDir = absolutePath . Substring ( ProjectDirectory . Length + 1 ) ;
454
+ }
452
455
}
453
456
} else {
454
457
nameMatch = PACKAGES_PHYSICAL_PATH_REGEX . Match ( path ) ;
@@ -640,42 +643,47 @@ internal static bool IsValidGuid(string guidStr) {
640
643
/// <param name="path">Path to the file/directory that needs checking.</param>
641
644
/// <returns>True if all folders are created successfully.</returns>
642
645
public static bool CreateFolder ( string path , Google . Logger logger = null ) {
643
- if ( AssetDatabase . IsValidFolder ( path ) ) {
644
- return true ;
645
- }
646
- DirectoryInfo di = new DirectoryInfo ( path ) ;
647
- var parentFolder = Path . GetDirectoryName ( path ) ;
648
- if ( ! CreateFolder ( parentFolder ) ) {
649
- return false ;
650
- }
646
+ try {
647
+ if ( AssetDatabase . IsValidFolder ( path ) ) {
648
+ return true ;
649
+ }
650
+ DirectoryInfo di = new DirectoryInfo ( path ) ;
651
+ var parentFolder = Path . GetDirectoryName ( path ) ;
652
+ if ( ! CreateFolder ( parentFolder ) ) {
653
+ return false ;
654
+ }
651
655
652
- // Try to use Unity API to create folder. However, some versions of Unity has issue to
653
- // create folders with version number in it like '9.0.0'. In this case, instead of
654
- // returnig empty guid, it can return guids with all zeroes.
655
- if ( IsValidGuid ( AssetDatabase . CreateFolder ( parentFolder , di . Name ) ) ) {
656
- return true ;
657
- }
656
+ // Try to use Unity API to create folder. However, some versions of Unity has issue to
657
+ // create folders with version number in it like '9.0.0'. In this case, instead of
658
+ // returning empty guid, it can return guids with all zeroes.
659
+ if ( IsValidGuid ( AssetDatabase . CreateFolder ( parentFolder , di . Name ) ) ) {
660
+ return true ;
661
+ }
658
662
659
- if ( logger != null ) {
660
- logger . Log (
661
- String . Format (
662
- "Please ignore Unity error messages similar to '{0}'.\n " +
663
- "Unable to use Unity API `AssetDatabase.CreateFolder()` to " +
664
- "create folder: '{1}'. Switch to use `Directory.CreateDirectory()` " +
665
- "instead. \n \n " +
666
- "See {2} for more information." ,
667
- "*** is not a valid directory name." ,
668
- path ,
669
- "https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-7046" ) ,
670
- LogLevel . Info ) ;
671
- }
663
+ if ( logger != null ) {
664
+ logger . Log (
665
+ String . Format (
666
+ "Please ignore Unity error messages similar to '{0}'.\n " +
667
+ "Unable to use Unity API `AssetDatabase.CreateFolder()` to " +
668
+ "create folder: '{1}'. Switch to use `Directory.CreateDirectory()` " +
669
+ "instead. \n \n " +
670
+ "See {2} for more information." ,
671
+ "*** is not a valid directory name." ,
672
+ path ,
673
+ "https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-7046" ) ,
674
+ LogLevel . Info ) ;
675
+ }
672
676
673
- return Directory . CreateDirectory ( path ) != null ;
677
+ return Directory . CreateDirectory ( path ) != null ;
678
+ } catch ( Exception ex ) {
679
+ logger . Log ( "Exception thrown trying to CreateFolder. " + ex , LogLevel . Error ) ;
680
+ return false ;
681
+ }
674
682
}
675
683
676
684
/// <summary>
677
685
/// Replace "Assets/", "Packages/package-id", or "Library/PackageCache/package-id@version"
678
- /// base in the path with the new base.
686
+ /// base (@version optional) in the path with the new base.
679
687
/// </summary>
680
688
/// <param name="path">Path to the file/directory to be modified.</param>
681
689
/// <param name="newBase">New base used to replace the given path.</param>
0 commit comments