FileUtilities.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.IO;
  3. using Debug = UnityEngine.Debug;
  4. using UnityEditor.VersionControl;
  5. namespace UnityEditor.ShaderGraph
  6. {
  7. static class FileUtilities
  8. {
  9. public static bool WriteShaderGraphToDisk<T>(string path, T data)
  10. {
  11. if (data == null)
  12. {
  13. throw new ArgumentNullException(nameof(data));
  14. }
  15. CheckoutIfValid(path);
  16. try
  17. {
  18. File.WriteAllText(path, EditorJsonUtility.ToJson(data, true));
  19. }
  20. catch (Exception e)
  21. {
  22. if (e.GetBaseException() is UnauthorizedAccessException &&
  23. (File.GetAttributes(path) & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
  24. {
  25. FileInfo fileInfo = new FileInfo(path);
  26. fileInfo.IsReadOnly = false;
  27. File.WriteAllText(path, EditorJsonUtility.ToJson(data, true));
  28. return true;
  29. }
  30. Debug.LogException(e);
  31. return false;
  32. }
  33. return true;
  34. }
  35. static void CheckoutIfValid(string path)
  36. {
  37. if (VersionControl.Provider.enabled && VersionControl.Provider.isActive)
  38. {
  39. var asset = VersionControl.Provider.GetAssetByPath(path);
  40. if (asset != null)
  41. {
  42. if (!VersionControl.Provider.IsOpenForEdit(asset))
  43. {
  44. var task = VersionControl.Provider.Checkout(asset, VersionControl.CheckoutMode.Asset);
  45. task.Wait();
  46. if (!task.success)
  47. Debug.Log(task.text + " " + task.resultCode);
  48. }
  49. }
  50. }
  51. }
  52. }
  53. }