/// <summary>
 /// Creates the directory
 /// </summary>
 public override void Create()
 {
     if (InternalDirectory == null)
     {
         return;
     }
     InternalDirectory.Create();
     InternalDirectory.Refresh();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates the directory
 /// </summary>
 public override IDirectory Create()
 {
     if (InternalDirectory is null)
     {
         return(this);
     }
     InternalDirectory.Create();
     InternalDirectory.Refresh();
     return(this);
 }
Exemplo n.º 3
0
 public void Create()
 {
     InternalDirectory.Create();
     InternalDirectory.Refresh();
 }