3
我想創建我的應用程序目錄來保存我的配置文件。但黑莓模擬器在創建目錄時會引發異常。我已經嘗試了下面的代碼。在黑莓應用程序的創建目錄中拋出「FileIOException:不是目錄」
try {
FileConnection myAppDir = (FileConnection) Connector.open("file:///store/home/user/myAppDir", Connector.READ_WRITE);
if (!myAppDir.exists()){
myAppDir.mkdir(); // Exception throw here
}
} catch (Exception e) {
e.printStackTrace();
}
異常拋出
net.rim.device.api.io.file.FileIOException: Not a directory