DotNetNuke provides a class which provides the funktionality to get the object representing a file stored.
This enables us to easily store, retreive and assign files to links, images or others.
var image = (FileInfo)DotNetNuke.Services.FileSystem.FileManager.Instance.GetFile(FileId);
if (image != null){
img_Image.ImageUrl = DotNetNuke.Services.FileSystem.FileManager.Instance.GetUrl(image);
}