IsFeatureAvailable() public method

Determines whether Extended Attributes are available on the filesystem.
public IsFeatureAvailable ( string path ) : bool
path string Path to be checked
return bool
 public void SetUp()
 {
     var config = ITUtils.GetConfig();
     string localPath = config[1].ToString();
     this.path = Path.Combine(localPath, Path.GetRandomFileName());
     var reader = new ExtendedAttributeReaderDos();
     if (!reader.IsFeatureAvailable(localPath)) {
         Assert.Ignore("Extended Attribute not available on this machine");
     }
 }
 public void CheckAvailableOnPath()
 {
     var reader = new ExtendedAttributeReaderDos();
     reader.IsFeatureAvailable(Environment.CurrentDirectory);
 }