Question
filepath to a shared drive
I'm trying a script that adds a "j_" to the beginning and an"_a" to the end if the file name and then saves a pdf to the hardcoded directory on a share. I can't seem to get the path to the directory correct. Here is the directory path I wish to save to:
/Volumes/Common/FastChannel/watchedfolders/ZwebPDFs/j_VACJ-0960_a.pdf
and here's the script:
try {
with ( app.activeDocument ) {
// Export the pdfs to the ZWEB with correct naming conventions
myPDFFile = new File( filePath + "/Common/FastChannel/watchedfolders/ZwebPDFs/" + "j_" + app.activeDocument.name.split(".indd")[0] + "_a" + ".pdf" );
exportFile( ExportFormat.pdfType, myPDFFile, false, "[Smallest File Size]" );
}
}
Does anyone know how to hard code a path to a share?
Thanks,
Randy
/Volumes/Common/FastChannel/watchedfolders/ZwebPDFs/j_VACJ-0960_a.pdf
and here's the script:
try {
with ( app.activeDocument ) {
// Export the pdfs to the ZWEB with correct naming conventions
myPDFFile = new File( filePath + "/Common/FastChannel/watchedfolders/ZwebPDFs/" + "j_" + app.activeDocument.name.split(".indd")[0] + "_a" + ".pdf" );
exportFile( ExportFormat.pdfType, myPDFFile, false, "[Smallest File Size]" );
}
}
Does anyone know how to hard code a path to a share?
Thanks,
Randy