예제 #1
0
 public override void Write(string data)
 {
     URLManager.CreatePath(path);
     try
     {
         File.WriteAllText(source, data);
     }
     catch (Exception exception)
     {
         Debug.LogException(exception);
     }
 }