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);
        }