📄 remoteif.java
字号:
package remote;import java.rmi.Remote;import java.rmi.RemoteException;public interface RemoteIF extends Remote { // List the filesystem root public String[] getDriveList(String code) throws RemoteException; // List file of particular location public boolean listingFile(String user,String location,String code) throws RemoteException; // get file list public String[] getFileList(String user,String path,String code) throws RemoteException; // get directory list public String[] getDirList(String user,String path,String code) throws RemoteException; public boolean getFileDetails(String path,String code) throws RemoteException; public boolean getPreview(String path,String user,String code) throws RemoteException; public boolean getPreview2(String path,String user,int w,int h,int q,String code) throws RemoteException; public String getModified(String path,String code) throws RemoteException; public long getFileSize(String path,String code) throws RemoteException; public boolean getHidden(String path) throws RemoteException; public boolean checkUserValid(String n,String p,String code) throws RemoteException; public boolean sendEmail(String user,String receiver,String t,String c,String[] file_selected,String code) throws RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -