Access Files/Folders on mounted volume?

I couldn’t figure out how to access file or folder in the mounted volume.
Any idea?

I’m going to guess that the problem you are having is that you don’t know the path to the mounted volume. There is a top-level directory called Volumes that contains mounted disks, servers, cds, etc. So let’s say, for example, that your mounted volume is called myServer, you could access a file on that server at /Documents/myfile.txt with the following command:

open file "/Volumes/myServer/Documents/myfile.txt" for reading

I hope this is the information you need.

That does it. Thanks Matt