Hi,
Your question is not clear. I am able to interpret that you want to save whatever is there in the link list in a file and then to create a link list from that file.
If my above interpretation is correct then following may help:
1. Consider each node of link list as a record in the file.
2. Whenever you want to save the link list, open the file in a create mode, traverse the list and add the data of each node in the file as a single record. For your convenience you should define the record length or should put some delimiter at the end of record while writing in a file. This will help you to determine the end of record when you will read the file.
3. When you want to load the file then open the file and read it record by record and create the linked list.
VinKish