<?php
$args = array(
'post_type' => 'attachment',
'numberposts' => null,
'post_status' => null
);
$attachments = get_posts($args);
if($attachments){
foreach($attachments as $attachment){ ?>
<a href="<?php the_permalink($attachment); ?>"><?php echo apply_filters( 'the_title', $attachment->post_title ); ?></a>
<?php }
} ?>
<a href="<?php echo wp_get_attachment_url($attachment->ID); ?>"><?php echo apply_filters( 'the_title', $attachment->post_title ); ?></a>