Copying a file from a remote or server location

Find out why the . goes before the /

Moderator: Paul Tuersley

Post Reply
adamghering
Posts: 22
Joined: April 2nd, 2010, 1:14 am

I would like to copy a file from a server share to the local drive. I can already copy a file from drive to drive and folder to folder locally. In the java script toolkit it makes reference to the path like this

If a path name starts with two slashes (or backslashes on Windows), the first element refers to a remote
server. For example, //myhost/mydir/myfile refers to the path /mydir/myfile on the server myhost.

also
//myServer/share/file

my copy script is simple like
myfile = File("c:\\File.txt);
myfile.copy("D:\\);

this works and copies the file I just need to know the proper syntax to insert the server location in the myfile object that is designated any help would be appreciated

thanks in advance
Adam Ghering
Compositing Supervisor
Legend Films inc.
2D/3D Stereo Conversion
User avatar
lloydalvarez
Enhancement master
Posts: 460
Joined: June 17th, 2004, 9:27 am
Location: New York City, NY
Contact:

Hi Adam,

You can use my Batch Search and Replace Paths script to see how AE sees a path. Import the file you would like to know the path of into AE and run the script in Test mode with the XML option off. This will generate a text log file which will show you the path the way AE sees it.

Lloyd
adamghering
Posts: 22
Joined: April 2nd, 2010, 1:14 am

Ok ...so another one down.

for those of you interested.
When you declare an instance of the file object you want to copy you also need to state the file name in the target path to where you will be copying the file to ...

for instance

MyFile = File.("//Servername/data/MyFile.txt");
MyFile.copy("c:\\Folder\\MyFile.txt");

This should do it...I tried everything ...who knew you needed to declare the file in the destination...

cheers,
Adam Ghering
Compositing Supervisor
Legend Films inc.
2D/3D Stereo Conversion
Post Reply