Imagine that we have several large-sized multimedia files called file1, file2, file3, ..., fileN respectively. Is there a way to create a file in the file system, say called clink, of very small size, which points to these multiple files so that by accessing the file clink one would be effectively accessing file1, file2, ..., fileN sequentially and so that it also allows seeking? The file clink should be 'static' in the sense that it does not require any more operation than mounting the file system, unlike the case of a named-pipe where there needs to be a process feeding the data (and easily breakable). For my purpose, it is enough to have a seekable read-only access. Thanks!