How about this expression?
Directory.GetFiles(Environment.CurrentDirectory+"\Input\","*.txt")(0)
It will get the first text file only from the folder.

If you need to get all the text file from the folder
Use For each activity
Directory.GetFiles(Environment.CurrentDirectory+"\Input\","*.txt")

Regards
Gokul