Does anyone know whether it is possible to save to a folder in iCloud using Java/Extendscript?
I have tried the following:
docRef.saveAs ( "/iCloud Drive/<folder structure>/" + <filename>, saveOptions, true, Extension.LOWERCASE );
where: <folder structure> mimics that on the HD; and <filename> is a variable containing a valid filename.
I have also tried using the full iCloud path (copied and pasted).
In both instances, I get the "General Photoshop error occurred. This functionality may not be available in this version of Photoshop. - <no additional information available>" error.
A save to the HD immediately before the attempted save to iCloud, works properly using: docRef.saveAs ( "/<folder structure>/" + <filename>, saveOptions, true, Extension.LOWERCASE );
Ideas welcomed, many thanks,
MB