Esempio n. 1
0
 /// <summary>
 /// Deletes the file if it exists
 /// </summary>
 /// <returns></returns>
 public Option <NodeFilePath> DeleteIfExists()
 => Try(() =>
 {
     AbsolutePath.DeleteIfExists();
     return(this);
 });