using System; #if !PORTABLE using System.IO; #endif namespace SharpCompress.Common { public interface IVolume : IDisposable { #if !PORTABLE /// /// File that backs this volume, if it not stream based /// FileInfo VolumeFile { get; } #endif } }