AcManager.Tools.GameProperties.ScreenshotsConverter.GetBitmaps C# (CSharp) 메소드

GetBitmaps() 개인적인 정적인 메소드

private static GetBitmaps ( ) : IEnumerable
리턴 IEnumerable
        private static IEnumerable<string> GetBitmaps() {
            try {
                return FileUtils.GetFilesSafe(FileUtils.GetDocumentsScreensDirectory())
                                .Where(file => file.EndsWith(@".bmp", StringComparison.OrdinalIgnoreCase));
            } catch (Exception e) {
                Logging.Error("Can’t get files without extension: " + e);
                return new string[0];
            }
        }