getClipboardFiles(Ver2.11対応版)
IndexScriptGlobal method− getClipboardFiles

getClipboardFiles()
If the file is copied to the clipboard, returns an array of file paths. (V 1.03)
If the clipboard is a content other than a file (such as text), the number of elements in the array will be less than or equal to 0 (0 or -1).
It will fail if a place without a path (such as "computer") is copied.
An array is an array of type SAFEARRAY.
Example:
varSafeArray = getClipboardFiles();
objArray = varSafeArray.toArray();
numFiles = objArray.length; //Elements
strPath = objArray[0]; //Element 0〜numFiles-1
パラメータ
パラメータはありません。

返り値(文字列型)
クリップボードにファイルがコピーされている場合、ファイルのパスの配列を返します。