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