forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
629 B
29 lines
629 B
package com.fanruan.api.env; |
|
|
|
import com.fr.workspace.WorkContext; |
|
import com.fr.workspace.Workspace; |
|
import com.fr.workspace.resource.WorkResource; |
|
|
|
/** |
|
* @author richie |
|
* @version 10.0 |
|
* Created by richie on 2019-08-09 |
|
*/ |
|
public class EnvKit { |
|
|
|
/** |
|
* 获取当前的工作目录 |
|
* @return 工作目录 |
|
*/ |
|
public static Workspace getCurrent() { |
|
return WorkContext.getCurrent(); |
|
} |
|
|
|
/** |
|
* 获取当前工作目录的资源读写对象 |
|
* @return 资源读写对象 |
|
*/ |
|
public static WorkResource getWorkResource() { |
|
return WorkContext.getWorkResource(); |
|
} |
|
}
|
|
|