Geowigo.Models.CartridgeTag.GetLogFiles C# (CSharp) Method

GetLogFiles() private method

private GetLogFiles ( IsolatedStorageFile isf ) : IEnumerable
isf System.IO.IsolatedStorage.IsolatedStorageFile
return IEnumerable
        private IEnumerable<string> GetLogFiles(IsolatedStorageFile isf)
        {
            return isf.GetFileNames(Path.Combine(PathToLogs, "*.gwl")).Select(s => Path.Combine(PathToLogs, s));
        }