Skip to content

Instantly share code, notes, and snippets.

@osima
Created June 3, 2010 03:49
Show Gist options
  • Save osima/423421 to your computer and use it in GitHub Desktop.
Save osima/423421 to your computer and use it in GitHub Desktop.
InDesignのjsxで有効なパスへの変換
class IndUtil {
// Windows専用
// WindowsスタイルのファイルパスをExtendScriptで使える形式に変換して返す.
static String toIndPath( File filePath ){
//def path = filePath.absolutePath
def path = filePath.canonicalPath
path.replaceAll('\\\\','/')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment