Skip to content
Permalink
8bed31719c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
38 lines (34 sloc) 911 Bytes
/* :name=Open Project Folder :description=Open the project folder in the operating system
*
* Open project folder
*
* @author Yu Tang
* @date 2013-06-05
* @version 0.3
*/
import static javax.swing.JOptionPane.*
import static org.omegat.util.Platform.*
// abort if a project is not opened yet
def prop = project.projectProperties
if (!prop) {
final def title = 'open project folder'
final def msg = 'Please try again after you open a project.'
showMessageDialog null, msg, title, INFORMATION_MESSAGE
return
}
// get command GString to open a folder
def folder = prop.projectRoot
def command
switch (osType) {
case [OsType.WIN64, OsType.WIN32]:
command = "explorer.exe \"$folder\""
break
case [OsType.MAC64, OsType.MAC32]:
command = ['open', folder]
break
default: // for Linux or others
command = ['xdg-open', folder]
break
}
// open it
command.execute()