A project defaults to the current directory it was started in unless you create a shortcut to the program and specify a startup directory.

Therefore somthing like

FileCopy "MyFile.Txt", "C:\Program Files\MyFile.Txt"

Should just work

If you're having problems with the initial directory being different then add the following line to the Form_Load Sub

ChDir App.Path

This sets the current path to the application location.

Hope this helps,

Steve.