//--------------------------------------------------------------------------- // NoticeファイルFTP転送 // // 説明: // 引数: // 戻値: 0: 成功 -1:失敗 //--------------------------------------------------------------------------- public int UploadNotice() { try { _Client.UploadFile(NoticeFile.GetNoticeFilePath(), NoticeFile.GetNoticeFileName()); RecordFTPLog("Upload Notice file."); return(0); } catch (Exception ex) { ErrorProc(ex.Message); RecordFTPLog("[FAILURE] Upload Notice file."); } return(-1); }
//--------------------------------------------------------------------------- // Noticeファイル削除 // // 説明: // 引数: // 戻値: 0: 成功 -1:失敗 //--------------------------------------------------------------------------- public int DeleteNotice() { try { if (isExistNoticeOnServer() == 1) { _Client.DeleteFile(NoticeFile.GetNoticeFileName()); } return(0); } catch (Exception ex) { RecordFTPLog("[FAILURE] Delete Notice file on server."); ErrorProc(ex.Message); } return(-1); }
//--------------------------------------------------------------------------- // Noticeファイル存在有無チェック // // 説明: // 引数: // 戻値: 0: 無 1: 有 -1: エラー //--------------------------------------------------------------------------- public int isExistNoticeOnServer() { try { if (_Client.FileExists(NoticeFile.GetNoticeFileName()) == true) { return(1); } else { return(0); } } catch (Exception ex) { ErrorProc(ex.Message); RecordFTPLog("[FAILURE] Check Notice file on server."); } return(-1); }