Skip to content

Instantly share code, notes, and snippets.

@PopupAsylum
Created September 23, 2016 14:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PopupAsylum/4b41a5a20eaf0e6a35b6aeb98476c37b to your computer and use it in GitHub Desktop.
Save PopupAsylum/4b41a5a20eaf0e6a35b6aeb98476c37b to your computer and use it in GitHub Desktop.
Adds a menu option to create a copy of the current Unity project using symbolic links, Windows only, usually needs admin
using UnityEngine;
using UnityEditor;
using System.Collections;
using System.Runtime.InteropServices;
internal static class SymbolicLink {
#if UNITY_EDITOR_WIN
[DllImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.I1)]
public static extern bool CreateSymbolicLink(string lpSymlinkFileName, string lpTargetFileName, SymLinkFlag dwFlags);
internal enum SymLinkFlag {
File = 0,
Directory = 1
}
#endif
}
public class SymbolicProjectMenu {
#if UNITY_EDITOR_WIN
[MenuItem("Edit/Create Symbolic Project")]
static void CreateSymbolicProject() {
string path = EditorUtility.SaveFolderPanel("Folder", "", "Project");
string targetAssetPath = Application.dataPath;
string targetSettingsPath = targetAssetPath.Remove(targetAssetPath.Length - "Assets".Length) + "ProjectSettings";
string symAssetPath = path + "/Assets";
string symProjectSettings = path + "/ProjectSettings";
bool created = SymbolicLink.CreateSymbolicLink(symAssetPath, targetAssetPath, SymbolicLink.SymLinkFlag.Directory);
created &= SymbolicLink.CreateSymbolicLink(symProjectSettings, targetSettingsPath, SymbolicLink.SymLinkFlag.Directory);
if (created) {
EditorUtility.DisplayDialog("Success!", "Symbolic 'Assets' and 'Project Settings' folders were created at " + path, "Awesome! Cheers Mark");
} else {
EditorUtility.DisplayDialog("Something Went Wrong!", "Couldn't create the link, you may need to run as Administrator", "OK");
}
}
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment