Ejemplo n.º 1
0
        public void WriteAllBytes(string path, byte[] bytes)
        {
            if (_sharpCifsFileSystem.IsEnabledForPath(path))
            {
                _sharpCifsFileSystem.WriteAllBytes(path, bytes);
                return;
            }

            File.WriteAllBytes(path, bytes);
        }