E D R , A S I H C RSS

Full text search for "File"

File


Search BackLinks only
Display context of search results
Case-sensitive searching
  • 김희성/MTFREADER . . . . 75 matches
         #define FILE_LOAD_ERROR 1
          PFILE_RECORD_HEADER MFT;
          U32 BytesPerFileRecord;
          long ReadAttribute(FILE* fp, unsigned char* offset, long flag);
          hVolume = CreateFile(drive, GENERIC_READ,FILE_SHARE_READ | FILE_SHARE_WRITE, 0,OPEN_EXISTING, 0, 0);
          ReadFile(hVolume, &boot_block, sizeof(boot_block), &cnt, 0);
          ErrorCode=FILE_LOAD_ERROR;
          void MakeBinaryFile(char* filename); //MFT를 Binary 그대로 저장한다.
          void MakeTextFile(char* filename, long flag); //MFT 속성을 text 파일로 저장.
          PFILE_RECORD_HEADER $MFT;
          BytesPerFileRecord = boot_block.ClustersPerFileRecord < 0x80? boot_block.ClustersPerFileRecord* boot_block.SectorsPerCluster* boot_block.BytesPerSector : 1 << (0x100 - boot_block.ClustersPerFileRecord);
          $MFT = PFILE_RECORD_HEADER(new U8[BytesPerFileRecord]);
          ReadSector((boot_block.MftStartLcn) * boot_block.SectorsPerCluster, BytesPerFileRecord / boot_block.BytesPerSector, $MFT);
          MFT=PFILE_RECORD_HEADER(new U8[*((unsigned __int64*)((unsigned char*)$MFT+point+40))]);
          ReadFile(hVolume, buffer, count * boot_block.BytesPerSector, &n, &overlap);
         long _MFT_READER::ReadAttribute(FILE* fp, unsigned char* point, long flag)
          FileTimeToSystemTime((FILETIME*)offset,&time);
          fprintf(fp,"File 생성 %d년 %d월 %d일\n",time.wYear,time.wMonth,time.wDay);
          FileTimeToSystemTime((FILETIME*)(offset+8),&time);
          fprintf(fp,"File 수정 %d년 %d월 %d일\n",time.wYear,time.wMonth,time.wDay);
  • JavaNetworkProgramming . . . . 67 matches
          *이장에서는 FileOutputStream과 FileInputStream에 관해 다루고 있다.
          *FileOutputStream과 FileInputStream은 파일에 대한 바이트 기반의 스트림 엑세스를 제공하는 2개의 표준 클래스이다.
          *이외에 File,FileDescriptor,RandomAccessFile에 관해 간략히 나오고 파일스트림과 같이 사용하는 예제가 나온다.
          *File클래스 : 시스템에 독립적인 파일의 이름을 나타내고 실제 파일에 관한 정보를 결정하는 메소드뿐만아니라, 파일의 속성을 바꾸는 메소드도 제공
          *FileDescriptor클래스 : FileDescriptor 객체는 하위 레벨의 시스템 파일 설명자로의 핸들이다. 파일 설명자는 열려진 파일을 의미하며, 읽기 작업이나 쓰기 작업을 위한 현재의 파일 내의 위치와 같은 정보들을 포함한다. RandomAccessFile이나 FileOutputStream, FileInputStream을 사용하지 않고는 유용하게 FileDescritor를 생성할수 있는 방법은 없다 . --;
          *RandomAccessFile클래스 : 파일스트림을 사용하지않고 파일을 쉽게 다룰수 있음 장점은 파일스트림 클래스는 순차적 엑세스만이 가능하지만 이것은 임의의 엑세스가 가능하다. 여기선 RandomAccessFile클래스랑 파일 스트림을 같이 쓰는데 RandomAccessFile의 장점을 가지고 네트워크에서도 별다른 수정없이 사용할수있다. 예제는 밑에 --;
          *FileOutputStream 클래스 : 연속적인 데이터가 파일에 쓰여질수 있도록 해줌
          *FileInputStream 클래스 : 연속적인 데이터를 읽을수 있게 해줌 --;
          FileInputStream in = new FileInputStream(args[0]); //원본 파일
          FileOutputStream out = new FileOutputStream(args[1]); //복사본 파일
          out.close(); //close가 호출되지 않으면 FileOutputStream에 가비지 콜렉션이 일어날 때에 파일과 하부의 FileDescriptor가 자동으로 닫힌다.
          *덮어쓰기(Overwriting)기능을 갖춘 FileOutputStream
          public class SimpleOverwritingFileOutputStream extends OutputStream {
          protected RandomAccessFile file; //랜덤 엑세스 파일
          public SimpleOverwritingFileOutputStream(String filename) throws IOException {
          file = new RandomAccessFile(filename,"rw"); //RandomAccessFile은 파일이 존재하지 않으면 자동으로 파일생성 하고 그렇지
          file.write(datum);
          file.close();
          *위치 이동(Seeking)기능을 갖춘 FileOutputStream
          public class SeekableFileOutputStream extends FileOutputStream {
  • NSIS/예제3 . . . . 57 matches
         [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=50&filenum=1 만들어진Installer] - 실행가능.
         OutFile "tetris.exe"
         InstallDir $PROGRAMFILES\zp_tetris
         Section "ProgramFiles"
          File f:\tetris\execute\tetris.exe
         SectionDivider " Source Files "
         Section "SourceFiles"
          File /r f:\tetris\Sources\*.*
         Processing script file: "test1.nsi"
         OutFile: "tetris.exe"
         InstallDir: "$PROGRAMFILES\zp_tetris"
         Section: "ProgramFiles"
         File: "Tetris.exe" [compress] 101234/1675339 bytes
         SectionDivider " Source Files "
         Section: "SourceFiles"
         File: "TetrisWnd.h" [compress] 978/2443 bytes
         File: "CH_Global.h" [compress] 357/1272 bytes
         File: "CH_Packet.h" [compress] 513/1002 bytes
         File: "DataSocket.cpp" [compress] 1010/2426 bytes
         File: "DataSocket.h" [compress] 671/1519 bytes
  • 새싹교실/2012/세싹 . . . . 54 matches
          U64 BaseFileRecord;
         } FILE_RECORD_HEADR, *PFILE_RECORD_HEADER;
          AttributeFileName = 0x30,
          U32 ClustersPerFileRecord; // 파일 레코드당 클러스터수
         U32 BytesPerFileRecord;
         PFILE_RECORD_HEADER MFT;
          hVolume = CreateFile(drive, GENERIC_READ,FILE_SHARE_READ | FILE_SHARE_WRITE, 0,OPEN_EXISTING, 0, 0);
          ReadFile(hVolume, &boot_block, sizeof(boot_block), &cnt, 0);
          printf("======My FILE SYSTEM INFO==========\n");
          printf("File System : %s \n",boot_block.Format);
          printf("Clusters Per FileRecord : %u\n",boot_block.ClustersPerFileRecord);
          BytesPerFileRecord = boot_block.ClustersPerFileRecord < 0x80? boot_block.ClustersPerFileRecord* boot_block.SectorsPerCluster* boot_block.BytesPerSector : 1 << (0x100 - boot_block.ClustersPerFileRecord);
          MFT = PFILE_RECORD_HEADER(new U8[BytesPerFileRecord]);
          ReadSector(boot_block.MftStartLcn * boot_block.SectorsPerCluster, BytesPerFileRecord / boot_block.BytesPerSector, MFT);
          ReadFile(hVolume, buffer, count * boot_block.BytesPerSector, &n, &overlap);
          * CreateFile함수를 처음 사용하여보았습니다. - [김희성]
          http://www.winapi.co.kr/reference/Function/CreateFile.htm
          http://www.winapi.co.kr/reference/Function/ReadFile.htm
          * ReadFile의 overlap인자 사용법이 나와있는 곳을 찾기 힘듭니다 ;ㅅ;
          ReadFile은 파일포인터를 읽은 만큼 옮기던데 ReadSector에서는 옮긴 지점부터 섹터 단위로 세어서 읽는 건가요? 아니면 처음부터 다시 세어 읽는건가요? - [김희성]
  • 데블스캠프2013/셋째날/머신러닝 . . . . 42 matches
          cout << "File Open Finished" << endl;
          cout << "File load Finished" << endl;
          ofstream outputFile;
          outputFile.open("Test_Class");
          outputFile << testClass[i] << endl;
          outputFile.close();
          FILE * LABEL, *WORD;
          FILE * TEST, *PRINT;
         void readFile(int ** target, const char * filename, int row, int col);
          readFile(train_data, "DataSet/train_data11293x8165", 11293, 8165);
          readFile(train_class, "DataSet/train_class11293x20", 11293, 20);
          readFile(test_data, "DataSet/test_data7528x8165", 7528, 8165);
         void readFile(int ** target, const char * filename, int row, int col){
          FILE * file = fopen(filename, "r");
          fscanf(file, "%d,", &target[i][j]);
          fscanf(file, "%d", &target[i][j]);
          fclose(file);
         import java.io.File;
         import java.io.FileInputStream;
          FileInputStream testData = new FileInputStream(new File(
  • MoreEffectiveC++/Exception . . . . 36 matches
          Image(const string& imageDataFileName);
          AudioClip(const string& audioDataFileName);
          const string& imageFileName = "",
          const string& audioClipFileName = "");
          const string& imageFileName,
          const string& audioClipFileName)
          if (imageFileName != ""){ // 이미지를 생성한다.
          theImage = new Image(imageFileName);
          if (audioClipFileName != "") { // 소리 정보를 생성한다.
          theAudioCilp = new AudioClip( audioClipFileName);
          if (audioClipFileName != "") {
          theAudioClip = new AudioClip(audioClipFileName);
          const string& imageFileName,
          const string& audioClipFileName)
          if (imageFileName != ""){
          theImage = new Image(imageFileName);
          if (audioClipFileName != "") {
          theAudioCilp = new AudioClip( audioClipFileName);
          const string& imageFileName,
          const string& audioClipFileName)
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/송지원 . . . . 32 matches
         === Train File Analysis ===
         public class FileAnalasys {
          String filename;
          FileAnalasys(String f){
          filename = f;
          public void moveFileToData(){
          FileReader fr = new FileReader(filename);
          this.printDataToFile();
          private void printDataToFile(){
          FileWriter fw = new FileWriter(fname);
          public void loadAnalysisFile(){
          FileReader fr = new FileReader(filename);
         === test File Analysis ===
         import java.io.FileReader;
         import java.io.FileWriter;
         public class testFileCal {
          String filename;
          testFileCal(String f){
          filename = f;
          FileReader fr = new FileReader(filename);
  • ProjectSemiPhotoshop/SpikeSolution . . . . 30 matches
          BOOL Save(LPCTSTR lpszFileName);
          BOOL Load(LPCTSTR lpszFileName);
          BOOL LoadBMP(LPCTSTR lpszFileName);
          BOOL SaveBMP(LPCTSTR lpszFileName);
         BOOL CImage::Load(LPCTSTR lpszFileName)
          CString filetype;
          filetype = lpszFileName;
          filetype.MakeUpper();
          if(filetype.Find(".BMP") > -1) return LoadBMP(lpszFileName);
          else if(filetype.Find(".TIF") > -1) return LoadTIF(lpszFileName);
          else if(filetype.Find(".GIF") > -1) return LoadGIF(lpszFileName);
          else if(filetype.Find(".JPG") > -1) return LoadJPG(lpszFileName);
         BOOL CImage::LoadBMP(LPCTSTR lpszFileName)
          CFile file;
          CFileException fe;
          BITMAPFILEHEADER bmfHeader;
          if(!file.Open(lpszFileName, CFile::modeRead|CFile::shareDenyWrite, &fe))
          dwBitsSize = file.GetLength();
          if(file.Read((LPSTR)&bmfHeader, sizeof(bmfHeader))!=sizeof(bmfHeader))
          if (file.ReadHuge(pDIB, dwBitsSize - sizeof(BITMAPFILEHEADER)) != dwBitsSize - sizeof(BITMAPFILEHEADER) )
  • 레밍즈프로젝트/프로토타입/파일스트림 . . . . 28 matches
         = 대략적인 CFile =
         || m_hFile || Usually contains the operating-system file handle. ||
         || CFile || Constructs a CFile object from a path or file handle. ||
         || Abort || Closes a file ignoring all warnings and errors. ||
         || Duplicate || Constructs a duplicate object based on this file. ||
         || Open || Safely opens a file with an error-testing option. ||
         || Close || Closes a file and deletes the object. ||
         || Read || Reads (unbuffered) data from a file at the current file position. ||
         || ReadHuge || Can read more than 64K of (unbuffered) data from a file at the current file position. Obsolete in 32-bit programming. See Read. ||
         || Write || Writes (unbuffered) data in a file to the current file position. ||
         || WriteHuge || Can write more than 64K of (unbuffered) data in a file to the current file position. Obsolete in 32-bit programming. See Write. ||
         || Seek || Positions the current file pointer. ||
         || SeekToBegin || Positions the current file pointer at the beginning of the file. ||
         || SeekToEnd || Positions the current file pointer at the end of the file. ||
         || GetLength || Retrieves the length of the file. ||
         || SetLength || Changes the length of the file. ||
         || LockRange || Locks a range of bytes in a file. ||
         || UnlockRange || Unlocks a range of bytes in a file. ||
         || GetPosition || Retrieves the current file pointer. ||
         || GetStatus || Retrieves the status of this open file. ||
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/강성현 . . . . 27 matches
          * 파일입력은 FileData 클래스를 만들어서 사용. java.util.Scanner를 사용하였음.
         === FileData Class ===
         import java.io.FileInputStream;
         import java.io.FileNotFoundException;
         public class FileData {
          public FileData(String filename) throws FileNotFoundException, UnsupportedEncodingException {
          scan = new Scanner(new InputStreamReader(new FileInputStream(filename),"UTF-8"));
         === Train File Analysis ===
         import java.io.FileNotFoundException;
         import java.io.FileOutputStream;
          FileData politics = new FileData("train/politics/index.politics.db");
          FileData economy = new FileData("train/economy/index.economy.db");
          } catch (FileNotFoundException e) {
          private static void writeCsv(String filename) throws FileNotFoundException {
          PrintWriter pw = new PrintWriter(new FileOutputStream(filename));
         === test File Analysis ===
         import java.io.FileInputStream;
         import java.io.FileNotFoundException;
          CSVReader csv = new CSVReader(new InputStreamReader(new FileInputStream("result.csv"), "UTF-8"));
          FileData politics = new FileData("test/politics/politics.txt");
  • Gnutella-MoreFree . . . . 21 matches
         || pong || Ping을 받으면 주소와 기타 정보를 포함해 응답한다.Port / IP_Address / Num Of Files Shared / Num of KB Shared** IP_Address - Big endian||
         || queryHit || 검색 Query 조건과 일치한 경우 QueryHit로 응답한다. Num Of Hits 조건에 일치하는 Query의 결과 수 Port / IP_Address (Big-endian) / Speed / Result Set File Index ( 파일 번호 ) File Size ( 파일 크기 )File Name ( 파일 이 / 더블 널로 끝남 ) Servent Identifier 응답하는 Servent의 고유 식별자 Push 에 쓰인다. ||
         || push || 방화벽이 설치된 Servent와의 통신을 위한 DescriptorServent Identifier / File Index / IP_Address(Big-endian)/Port ||
          GET/get/<File Index>/<File Name>/HTTP/1.0rn
          <File Index>는 파일 번호이고 이는 QueryHit Result에 포함된 내용이다.
          GIV<File Index>:<Severnt Identifier>/<File Name>nn 를 보내 파일
          GET/get/<File Index>/<File Name>/HTTP1.0rn
          File Name : Packet.Cpp
         Download->m_FileLength = Item.Size;
         실제적으로 하나의 Host마다 CGnuDownload 클래스를 갖게 되며 데이타를 받는 소켓이 된다m_StartPos가 받기 시작하는 Chunk의 시작을 나타내며 ReadyFile()에서는 전의 받던 파일이 있는 지 조사후에 File을 연다.
         m_StartPos = m_pShell->m_BytesCompleted + ((m_pShell->m_FileLength - m_pShell->m_BytesCompleted) / 2);
         m_pChunk->FileLength = m_pShell->m_FileLength - m_StartPos;
         Item.FileIndex = makeD( flipX(TempX));
         // Get Filename
  • NSIS/Reference . . . . 20 matches
         || OutFile || "example.exe" || 인스톨러의 화일 이름 ||
         || || || 3 - Installing Files ||
         || InstallDir || $PROGRAMFILES\example || 기본 설치 디렉토리 ||
         || UninstallSubCaption || page_number subcaption || 0: Confirmation, 1:Uninstalling Files, 2:Completed||
         Label은 Goto 명령어나 기타 조건제어문들 (IfErrors, MessageBox, IfFileExists, StrCmp 등)을 위해 이용한다.
         || File || ([/r] file|wildcard [...]) | /oname=file.data infile.dat||해당 output path ($OUTDIR)에 화일들을 추가한다. 와일드카드 (?, *) 등을 이용할 수 있다. 만일 /r 옵션을 이용할 경우, 해당 화일들와 디렉토리들이 재귀적으로 추가된다. (rm -rf의 'r' 옵션의 의미를 생각하길) ||
         || Rename || [/REBOOTOK] source_file dest_file || 화일이름을 변경한다. (또는 Move 한다.) ||
         || Delete || [/REBOOTOK] file || 화일을 삭제한다. 와일드카드 사용가능.||
         || WriteINIStr || ini_filename section_name entry_name value || ini 화일에 기록. [section_name] entry_name=value 식으로 저장됨 ||
         || CopyFiles || . || . ||
         || SetFileAttributes || . || . ||
         || GetTempFileName || . || . ||
         || GetFileTime || . || . ||
         || GetFileTimeLocal || . || . ||
         || IfFileExists || . || . ||
         === File/directory i/o ===
         || FileOpen || . || . ||
         || FileClose || . || . ||
         || FileRead || . || . ||
         || FileWrite || . || . ||
  • ClassifyByAnagram/Passion . . . . 17 matches
         import java.io.File;
         import java.io.FileInputStream;
         import java.io.FileNotFoundException;
         import java.io.FileOutputStream;
          * @param file
          public Parser(File file) throws FileNotFoundException {
          this(new FileInputStream(file));
          String filename = "inputFile3.txt";
          InputStream in = new FileInputStream(filename);
          PrintStream out = new PrintStream(new BufferedOutputStream( new FileOutputStream( args[0] )));
         import java.io.File;
         import java.io.FileInputStream;
         import java.io.FileNotFoundException;
          String filename = "inputFile1.txt";
          parser = new Parser(new File(filename));
          String filename = "inputFile3.txt";
          parser = new Parser(new File(filename));
  • MoniWikiPo . . . . 15 matches
         # MoniWiki message file
         msgid "No filename given"
         #: ../plugin/Draw.php:81 ../plugin/UploadFile.php:154
         #: ../plugin/UploadFile.php:78
         #: ../plugin/UploadFile.php:127
         msgid "It is not allowed to change file ext. \"%s\" to \"%s\"."
         #: ../plugin/UploadFile.php:155
         #: ../plugin/UploadFile.php:164
         msgid "File \"%s\" is uploaded successfully"
         #: ../plugin/UploadFile.php:195
         msgid "Files are uploaded successfully"
         #: ../plugin/UploadFile.php:235
         #: ../plugin/UploadedFiles.php:278 ../plugin/rename.php:77 ../wikilib.php:882
         #: ../plugin/UploadedFiles.php:279 ../wikilib.php:860
         msgid "Delete selected files"
         msgid "Please try again or make a new profile"
         msgid "Profiles are saved successfully !"
         msgid "File does not exists"
         msgid "File '%s' is deleted"
         msgid "No files are selected !"
  • WinSock . . . . 15 matches
          HANDLE hFileIn;
          hFileIn = CreateFile ("d:\test.mp3", GENERIC_READ, FILE_SHARE_READ,
          dwLow = GetFileSize (hFileIn, &dwHigh);
          SetFilePointer (hFileIn, i, NULL, FILE_BEGIN);
          ReadFile (hFileIn, szBuffer, sizeof (szBuffer), &nRead, NULL);
          CloseHandle (hFileIn);
          HANDLE hFileOut;
          hFileOut = CreateFile ("testdata.mp3", GENERIC_WRITE, FILE_SHARE_READ,
          NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_ARCHIVE, NULL);
          // TEST_FILE_REQUARE 0xF0
          WriteFile (hFileOut, szBuffer, dwDataReaded, &nWrite, NULL);
  • JSP/FileUpload . . . . 14 matches
          String file = new String(dataBytes);
          String saveFile = file.substring(file.indexOf("filename="") + 10);
          saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
          saveFile = saveFile.substring(saveFile.lastIndexOf("\") + 1,saveFile.indexOf("""));
          pos = file.indexOf("filename="");
          pos = file.indexOf("\n", pos) + 1;
          pos = file.indexOf("\n", pos) + 1;
          pos = file.indexOf("\n", pos) + 1;
          int boundaryLocation = file.indexOf(boundary, pos) - 4;
          int startPos = ((file.substring(0, pos)).getBytes()).length;
          int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
          FileOutputStream fileOut = new FileOutputStream(saveFile);
          //fileOut.write(dataBytes);
          fileOut.write(dataBytes, startPos, (endPos - startPos));
          fileOut.flush();
          fileOut.close();
         // out.println("File saved as " +saveFile);
          out.write("<meta http-equiv="refresh" content="0;url=BugReport.jsp?fileName="+saveFile+"">");
  • UploadFile . . . . 14 matches
         MoniWiki는 두가지 인터페이스의 UploadFile매크로를 지원한다. 각각 이에 대응하는 액션이 있다.
         UploadFile매크로는 파일을 올리는 폼을 보여주고, UploadedFiles매크로는 올려진 파일의 리스트를 보여준다.
         UploadFile매크로와 UploadedFiles매크로는 각각 다중 디렉토리를 지원한다.
         'UploadFile'페이지 이외의 특정한 페이지에서 {{{[[UploadFile]]}}}을 사용하면, 그 페이지 이름을 하위 디렉토리로 하는 새로운 UploadFile 디렉토리가 만들어지고 그 밑으로 파일이 업로드 된다. (1단계 하위 디렉토리만 지원된다)
         == 파일 확장자를 통한 UploadFile제한 ==
         config.php의 {{{$pds_allowed}}}변수를 조정하여 UploadFile되는 파일 유형을 조절할 수 있습니다.
         ZeroWiki 하단에 있는 UploadFile action 을 클릭후, 자료를 올린다.
         [[UploadFile]]
         [[UploadedFiles(Uploaded Files)]]
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준 . . . . 14 matches
          private File fileName;
          public Trainer(File f) {
          this.fileName = f;
          Scanner sectionLearn = new Scanner(this.fileName);
          } catch (FileNotFoundException e) {
          // 해당 File 변수에 대한 Index Section 과의 매치율을 보여주는 함수. 맞은 것과 틀린것, 그리고 그 것에 대한 판단 확률을 반환한다.
          public void DocumentResult(File f, int index) {
          } catch (FileNotFoundException e) {
          // 생성자. File 갯수에 따라 지정을 해준다.
          public Analyzer(File[] dataList) {
         import java.io.File;
          File[] dbList =
          new File("svm_data.tar/package/train/economy/index.economy.db"),
          new File("svm_data.tar/package/train/politics/index.politics.db"),
          anal.DocumentResult(new File("svm_data.tar/package/test/economy/economy.txt"), 0);
          anal.DocumentResult(new File("svm_data.tar/package/test/politics/politics.txt"), 1);
  • 토이/메일주소셀렉터/김정현 . . . . 14 matches
          FileIo io= new FileIo();
          io.write("result.txt", io.getRemadeFromFile(input));
         public class FileIo {
          public FileIo() {
          public void write(String fileName, String text) {
          FileWriter fw;
          fw = new FileWriter(getTextFileForm(fileName));
          public String read(String fileName) {
          FileReader fr;
          fr = new FileReader(getTextFileForm(fileName));
          } catch (FileNotFoundException e) {
          public String getTextFileForm(String inputName) {
          public String getRemadeFromFile(String fileName) {
          return getRemade(read(fileName));
  • PythonNetworkProgramming . . . . 13 matches
         class FileSendChannel(asyncore.dispatcher, Thread):
          print "file send channel create."
          print "file send channel start."
          self.fileSendMain()
          def getFileSize(self, aFileName):
          return os.path.getsize(aFileName)
          def fileSendMain(self):
          aFileName='f:/sample.jpg'
          fileSize=self.getFileSize(aFileName)
          print "file size : ", fileSize
          f = open(aFileName, "rb")
          print "file opened.."
          while currentReaded < fileSize:
         class FileSendServer(asyncore.dispatcher):
          channel = FileSendChannel(connection, address)
          server = FileSendServer()
         class FileReceiveChannel(asyncore.dispatcher):
          client=FileReceiveChannel()
  • 문자반대출력/조현태 . . . . 12 matches
          ifstream inputFile("source.txt");
          if(!inputFile)
          inputFile.seekg(0,ios_base::end);
          stack file_data(inputFile.tellg());
          inputFile.seekg(0);
          while (inputFile.get(temp))
          file_data.get_in(temp);
          inputFile.close();
          ofstream outputFile("result.txt");
          if (outputFile == 0 )
          while (file_data.get_out(&temp))
          file_data.get_out(&temp_next);
          outputFile << temp_next << temp;
          outputFile << temp;
          outputFile.close();
  • DebuggingSeminar_2005/AutoExp.dat . . . . 11 matches
         Visual C++ .net 에 있는 파일이다. {{{~cpp C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Packages\Debugger}}} 에 존재한다.
         ; in this file. You can add rules for your types or change the
         ; For good examples, read the rules in this file.
         CFile =hFile=<m_hFile> name=<m_strFileName.m_pchData,s>
         CFileException =cause=<m_cause> OS Error=m_lOsError
         CMemFile =pos=<m_nPosition> size=<m_nFileSize>
         CStdioFile =FILE*=<m_pStream> name=<m_strFilename.m_pchData,s>
         ;_FILETIME=$ADDIN(EEAddIn.dll,AddIn_FileTime)
  • UploadFileMacro . . . . 11 matches
         {{{[[UploadFile]]}}}: 이것은 자바스크립트를 전혀 쓰지 않는다. 그 대신에 간단한 여러개의 파일을 올릴 수 있는 방법을 제공한다.
         [[UploadFile]]
         {{{[[UploadForm]]}}} 혹은 {{{[[UploadFile(js)]]}}}: 이 매크로는 여러개의 파일을 올릴 수 있는 폼을 자바스크립트를 사용하여 만들어준다.
         {{{[[SWFUpload]]}}} 혹은 {{{[[UploadFile(swf)]]}}}: 이 매크로는 모니위키 1.1.3CVS부터 지원하며 다중 파일 업로드를 지원한다. (Flash 10 지원)
         모니위키의 {{{[[UploadFile]]}}} 매크로는 업로드 된 파일을 {{{$upload_dir}}}로 정의된 디렉토리에 각 페이지별 디렉토리를 생성시키고, 그 디렉토리에 업로드된 파일을 저장한다.
         attachment:filename.ext 혹은 attachment:페이지명:filename.ext
         예를 들어, {{{MyPage}}}에 들어가서 {{{MyPage?action=UploadFile}}}을 하거나, MyPage에서 {{{[[UploadFile]]}}} 매크로를 사용하여 파일을 업로드를 하면 $upload_dir='pds';라고 되어있는 경우에 {{{pds/MyPage/}}}가 새롭게 만들어지고 거기에 올린 파일이 저장된다.
         == $use_filetype ==
         그러나 노스모크 모인모인에서는 {{{pds/*}}} 하위 디렉토리로 모든 파일이 저장된다. 노스모크 모인모인과 호환을 보장하기 위해서 UploadFile액션은 특별히 {{{UploadFile}}}이라는 페이지에서 파일을 업로드하면 {{{pds/UploadFile}}}라는 디렉토리가 만들어지지 않고 pds 아래로 바로 업로드 되게끔 하였다.
          * UploadedFiles
  • CxxTest . . . . 10 matches
          testFiles = []
          for eachFile in listdir("."):
          if isfile(eachFile):
          lastestPeriod = eachFile.rfind(".")
          fileName = eachFile[:lastestPeriod]
          extension = eachFile[lastestPeriod+1:]
          if fileName.endswith("Test"):
          print fileName, extension
          testFiles.append(eachFile)
          '''cmd= "python cxxtestgen.py --runner=ParenPrinter --gui=Win32Gui -o runner.cpp "+toStr(testFiles)'''
          cmd= "python cxxtestgen.py --runner=ParenPrinter -o runner.cpp "+toStr(testFiles)
  • NSISIde . . . . 10 matches
          * CWinApp::OnFileNew -> CDocManager::OnFileNew -> CMultiDocTemplate::OpenDocumentFile -> CNIDoc::OnNewDocument .. -> CNIView::OnInitialUpdate ()
          * CWinApp::OnFileOpen -> CDocManager::OnFileOpen -> CMultiDocTemplate::OpenDocumentFile -> CNIDoc::OnOpenDocument .. -> CNIView::OnInitialUpdate ()
          * CDocument::OnFileSave -> CDocument::DoSave -> CNIDoc::OnSaveDocument
          * CDocument::OnFileSaveAs -> CDocument::DoSave -> CNIDoc::OnSaveDocument
          * CFrameWnd::OnClose -> CWndApp::SaveAllModified -> CDocManager::SaveAllModified -> CDocTemplate::SaveAllModified -> CDocument::SaveModified -> CDocument::DoFileSave -> CDocument::DoSave -> CNIDoc::OnSaveDocument
          * CDocument::SaveModified -> DoFileSave
  • ProjectTriunity . . . . 10 matches
         || Upload:ExternalSort_FileIO_1.zip || 이상규 || File I/O 라이브러리 버전 1 ||
         || Upload:ExternalSort_FileIO_2.zip || 이상규 || File I/O 라이브러리 버전 2 ||
         || Upload:ExternalSort_FileIO_3.zip || 이상규 || File I/O 라이브러리 버전 3 ||
         || Upload:ExternalSort_FileIO_4.zip || 이상규 || File I/O 라이브러리 버전 4 ||
         || Upload:ExternalSort_FileIO_5.zip || 이상규 || File I/O 라이브러리 버전 5 ||
  • NUnit/C#예제 . . . . 9 matches
          public class FileTester
          String fileName = "_________Test";
          FileInfo fileInfo = new FileInfo(fileName);
          FileStream fileStream = fileInfo.Create();
          fileStream.WriteByte(12);
          fileStream.Flush();
          fileStream.Close();
          FileInfo fileInfo = new FileInfo(fileName);
          fileInfo.Delete();
          FileInfo fileInfo = new FileInfo(fileName);
          Assertion.Assert(fileInfo.Exists);
          1. Command에는 설치한 NUnit 콘솔 프로그램의 경로를 적어준다.(예:C:\Program Files\NUnit 2.2\bin\nunit-console.exe)
  • NamedPipe . . . . 8 matches
          fSuccess = ReadFile(
          fSuccess = WriteFile(
          FlushFileBuffers(hPipe);
          hPipe = CreateFile( // 파일을 연다
          NULL); // no template file
          fSuccess = WriteFile(
          MyErrExit("WriteFile");
          fSuccess = ReadFile(
          if (! WriteFile(GetStdHandle(STD_OUTPUT_HANDLE),
  • UploadedFiles . . . . 8 matches
         {{{UploadFile}}}은 업로드 폼(매크로)을 보여주고 업로드를 하는(액션) 플러그인이며,
         {{{UploadedFiles}}}플러그인은 이미 업로드 된 파일 목록을 보여주는 플러그인이다.
         {{{[[UploadedFiles]]}}} : 현재 페이지에 첨부된 파일 목록을 보여준다. pds/현제페이지이름/* 하위의 모든 파일 목록을 보여주게 된다.
         {{{[[UploadedFiles(top)]]}}} : 최상위 디렉토리를 보여준다. 즉, {{{pds/}}} 디렉토리를 보여준다.
         {{{[[UploadedFiles(페이지이름)]]}}} : 지정된 페이지에 첨부된 파일 목록을 보여준다.
         /!\ UploadedFiles 플러그인은 액션과 매크로를 동시에 지원하므로, 주소창에 {{{?action=uploadedfiles}}}를 덭붙여 주면 그 페이지에 첨부된 파일을 보여줍니다.
         [[UploadedFiles]]
         See also UploadFileMacro
  • NSIS/예제1 . . . . 7 matches
         OutFile "TestInstallSetup.exe"
         InstallDir $PROGRAMFILES\TestInstallSetup
          File "C:\windows\notepad.exe"
          File "C:\user\reset\Edit.zip"
         Processing script file: "example1.nsi"
         OutFile: "TestInstallSetup.exe"
         InstallDir: "$PROGRAMFILES\TestInstallSetup"
         File: "NOTEPAD.EXE" [compress] 20148/53248 bytes
         File: "Edit.zip" [compress] 119731/122685 bytes
         Processed 1 file, writing output:
         Output: "C:\Program Files\NSIS\TestInstallSetup.exe"
  • SignatureSurvey . . . . 7 matches
         def readFromFile(aFileName):
          f = open(aFileName, 'r')
         def writeToFile(aFileName, aStr):
          f = open(aFileName, 'w')
          data = readFromFile("sig.html")
  • 호너의법칙/조현태 . . . . 7 matches
          ofstream outputFile("aswer.txt");
          outputFile << write_temp[i][j];
          outputFile << '\n';
          outputFile << "# Horner Function Value ----> "<< Horner(0) << "\n";
          outputFile << "# Horner ADD Count ----> "<< number_of_sum << "\n";
          outputFile << "# Horner Multiply Count ----> "<< number_of_multiply << "\n";
          outputFile.close();
  • NSIS . . . . 6 matches
         보통 프로그램을 개발하고 나서 '만들었다' 로 끝나는 경우가 많다. 하지만, 정작 배포때에는 할일이 많다. 특히 제어판 프로그램 등록/삭제 에 등록되는 방식이라던지, 레지스트리를 건드린다던지, Program Files 폴더에 복사한다던지. 이 경우에는 보통 전용 Installer 프로그램을 쓰게 되지만, 아직 제대로 써본 적이 없었던 것 같다.
          * /Olog (log 는 filename) - compile 중 screen 상에 해당 화일에 대한 log를 표시하는 대신 화일로 설정한다.
          * /NOCONFIG - nsisconfi.nsi 을 포함하지 않는다. 이 파라메터가 없는 경우, 인스톨러는 기본적으로 nsisconf.nsi 로부터 기본설정이 세팅된다. (NSIS Configuration File 참조)
         NSIS Script File (.nsi) 는 command 들의 묶음인 batch-file와도 같아보이는 text file이다.
          "Remove all files in your NSIS directory? (If you have anything \
         ;copy files
         File /r `.\tmp\*.*`
         File /r `.\AdditionalDLL\*.dll`
         http://nsis.sourceforge.net/archive/download.php?file=FindProc.zip
         ;Delete Files
  • NSIS/예제2 . . . . 6 matches
         OutFile "example2.exe"
         InstallDir $PROGRAMFILES\Example2
          File "C:\winnt\notepad.exe"
         InstallDir $PROGRAMFILES\Example2
         OutFile "example2.exe"
         InstallDir $PROGRAMFILES\Example2
          File "C:\winnt\notepad.exe"
         Processing script file: "example2.nsi"
         OutFile: "example2.exe"
         InstallDir: "$PROGRAMFILES\Example2"
         File: "NOTEPAD.EXE" [compress] 21719/50960 bytes
         Processed 1 file, writing output:
  • STLPort . . . . 6 matches
          1. 만만해 보이는 디렉토리에 압축을 풉니다.(참고로, 제 Visual Studio는 D:\Programming Files2 에 있습니다)
          1. Visual C++를 열고, File > Open 메뉴로 src\vc6.mak 메이크파일을 읽어 들입니다.
          * Tools 메뉴 > Options 항목 > Directories 탭에서, Include Files 목록에 stlport 디렉토리를 추가하고 나서 이것을 첫 줄로 올립니다.
          * Tools > Options 메뉴 > Directories 탭에서, Include Files 목록에 방금 추가된 stlport 디렉토리(대개 ''C:/Program Files/Microsoft Visual Studio/VC98/include/stlport''이겠지요)를 추가하고 나서, 이 항목을 가장 첫 줄로 올립니다.
         이 컴파일 에러를 막으려면, STLport가 설치된 디렉토리(대개 C:/Program Files/Microsoft Visual Studio/VC98/include/stlport이겠지요) 에서 stl_user_config.h를 찾아 열고, 다음 부분을 주석 해제합니다.
  • TFP예제/WikiPageGather . . . . 6 matches
          def testConvertWikiPageNameToMoinFileName (self):
          self.assertEquals (self.pageGather.WikiPageNameToMoinFileName ('''한글테스트'''), '''_c7_d1_b1_db_c5_d7_bd_ba_c6_ae''')
          self.assertEquals (self.pageGather.WikiPageNameToMoinFileName ("FrontPage"), "FrontPage")
          def WikiPageNameToMoinFileName (self,pagename):
          fullpathname = self.pagePath + self.WikiPageNameToMoinFileName (pagename)
          pagefile = open (fullpathname, 'r')
          lines = pagefile.readlines ()
          pagefile.close()
          print "filename : " + self.WikiPageNameToMoinFileName (pagename)
         filename : LearningHowToLearn
         filename : ActiveX
         filename : Python
         filename : XPInstalled
         filename : TestFirstProgramming
         filename : _c7_d1_b1_db_c5_d7_bd_ba_c6_ae
         filename : PrevFrontPage
  • 실습 . . . . 6 matches
         2) File->New를 선택한다.
         9) File->New를 선택한다.
         10) Tab에서 Files를 선택한다.
         11) C/C++ Header File을 선택한 후, 오른쪽 File 칸에 "SungJuk.h"라고 기입한다.
         14) Tree를 모두 펼쳐 보면, SungJuk.h와 SungJuk.cpp가 존재한다.각 File을 밑에 보여주는 Source를 작성한다.
  • 프로그래밍/Score . . . . 6 matches
         import java.io.FileNotFoundException;
         import java.io.FileReader;
          public void readFile() {
          BufferedReader br = new BufferedReader(new FileReader("test.txt"));
          } catch (FileNotFoundException e) {
          s.readFile();
  • Ant . . . . 5 matches
          이제 Ant 를 실행하는 방법에 대해서 알아보자. Ant를 실행하는 것은 마치 make 명령을 내리는 것처럼 쉽다. Ant 에서 중요한 것은 make에서 "Makefile" 을 만들듯이 Build 파일을 잘 만드는 것이 중요합니다. Build 파일을 만드는 것에 대해서는 나중에 알아보기로 하고 일단 실행하는 방법부터 알아보죠.
          이것은 현재 디렉토리에 build.xml 이라는 파일을 Build File 로 해서 Build 를 하겠다는 것입니다. build.xml 파일이 없다면 에러를 출력하겠죠? ^^
          % ant -buildfile test.xml
          % ant -buildfile test.xml dist
          % ant -buildfile test.xml -Dbuild=build/classes dist
          위의 예에 하나가 추가됐죠? -D 옵션은 Build 파일의 Property task 와 같은 역할을 합니다. 즉 Build File 내부에서 사용되는 일종의 변수를 선언한다고 볼 수 있겠죠? ^^
         === Buildfile(build.xml) 을 만들어보자 ===
          Ant 를 다룰줄 안다는 말은 즉, Build File 을 만들줄 안다는 의미와 같다. Build File 은 파일이름에서도 알 수 있듯이 xml 을 기반으로 하고 있다. 예제로 참조해볼만한 화일로 ["Ant/TaskOne"], ["Ant/BuildTemplateExample"] 이 있다. 해당 화일을 보면서 설명을 읽으면 편할것이다.
          기존의 Makefile 이라던지 다른 Build 툴을 보면 의존관계(Dependency)라는 것이 있을 것이다. 즉, 배포(distribute)라는 target 을 수행하기 전에 compile 이라는 target 을 먼저 수행해야 하는 의존 관계가 발생할 수 있을 것이다. ''target'' 에서는 이런 의존관계(dependency)를 다음과 같은 방법으로 제공한다.
          * '''Build File''' : Build 의 순서 및 각 단계별 작업들에 대해서 xml 형식으로 적어놓은 파일을 말한다. Ant 에서는 default 로 build.xml 을 사용한다.
          * [http://jstorm.pe.kr/BBS/files/colJApp/ant_jinho.pdf] - JStorm ant document
         AntHill, CruiseControl 등의 툴과 연동하여 이용하기도 한다. 이 툴들은 해당 ant build 를 스케줄러에 맞춰놓고, 해당 시간이 되면 자동으로 해당 ant build file을 실행해준다. See Also Wiki:AntHill, Wiki:CruiseControl
  • EffectiveC++ . . . . 5 matches
          // source file
         // source file (??.cpp)
         // "example.h" file
         // "source1.cpp" file
         // "source2.cpp" file
         FileSystem& theFileSystem()
          static FileSystem tfs;
          // theFileSystem 함수를 호출하여 디렉토리 부분을 초기화 시킨다.
         이렇게 함으로 반드시 Directory클래스가 초기화 되기전에 FileSystem을 초기화 시킬수 있다.
  • MoreEffectiveC++/Techniques1of3 . . . . 5 matches
         만약 FileDescriptor가 유도된 클래스라면 이렇게 한다.
         const size_t Counted<FileDescriptor>::maxObjects = 16;
         ifstream inputFile("datafile.dat");
         if (inputFile) ... // inputFile이 잘 열렸는가에 관해서
  • NSIS/예제4 . . . . 5 matches
         LoadLanguageFile "${NSISDIR}\Contrib\Language files\Korean.nlf"
         OutFile "VncKorPatch.exe"
         InstallDir $PROGRAMFILES\RealVNC\VNC4
          File "vncconfig.exe"
          File "vncviewer.exe"
          File "winvnc4.exe"
  • PragmaticVersionControlWithCVS/CommonCVSCommands . . . . 5 matches
         RCS file: /home/CVSHOME/sesame/color.txt,v
         Working file: sesame/color.txt
         '''cvs update -d [files or directory]''' : 현재 디렉토리에 존재하는 모든 파일 폴더를 저장소의 최신버전으로 체크아웃. -d 옵션은 추가된 디렉토리가 존재하는 경우에 cvs가 현재 폴더에 자동으로 폴더를 만들어서 체크아웃 시킨다.
         U template/file1.java
         RCS file: /home/CVSROOT/PP/doc/StarterKit/pragprog.sty,v
         == Adding Files and Directories ==
         cvs add: scheduling file `test.txt' for addition
         cvs add: use `cvs commit' to add this file permanently
         root@eunviho:~/tmpdir/sesame/template2# cvs commit -m "new file added"
         === CVS and binary files ===
         '''cvs add -kb [File]''' : 지정된 파일에 대해서는 개정판 마디 파일의 전체를 저장하고 기타 처리를 하지 않는다.
         cvs add: scheduling file ‘DataFormat.doc’ for addition
         cvs add: use ’cvs commit’ to add this file permanently
         cvs add: scheduling file ‘DataFormat.doc’ for addition
         cvs add: use ’cvs commit’ to add this file permanently
         work> # copy a known good copy over this file
         == Ignoring Certain Files ==
         '''.cvsignore file'''
         == Renaming Files ==
         cvs remove: use `cvs commit' to remove this file permanently
  • WinampPlugin을이용한프로그래밍 . . . . 5 matches
         void playFile() {
          char playFile[256] = "garden.ogg";
          printf ("%s \n", in->FileExtensions); // 해당 플러그인이 지원하는 확장자가 나옴.
          if (!in->Play(playFile))
          playFile();
  • ZIM/ConceptualModel . . . . 5 matches
          * '''File Sender''' : File을 보내는 일 담당
          * '''File Receiver''' : File을 받는 일 담당
          * '''File Session'''
  • ZeroPage_200_OK/note . . . . 5 matches
         ==== Unix File ====
          * Unix에서 File이라함은 다음을 모두 의미한다.
          * Unix는 C임에도 불구하고 강력한 추상화를 통해 뭔가를 읽고 쓰는 것으로 File을 만들었다.
         FILE f = new Pipe();
          * Unix에서는 Pipe도 File이므로 static한 file 대신 Pipe를 쓰면 뭔가 다이나믹한게 되지않을까?
          * 한 커넥션 (=job)을 자세히 살펴보았더니...File I/O DB접근 등등 대기만 하는 시간이 길더라.
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/변형진 . . . . 5 matches
         import java.io.FileReader;
          new BufferedReader(new FileReader("package/test/economy/economy.txt")),
          new BufferedReader(new FileReader("package/test/politics/politics.txt")) };
         import java.io.FileReader;
          private String fileName;
          public Trainer(String fileName) {
          this.fileName = fileName;
          BufferedReader reader = new BufferedReader(new FileReader(fileName));
  • 문자반대출력/김정현 . . . . 5 matches
         // FileIO.java 파일
         public class FileIO
          input = new Scanner(new File(name));
          public void fileClose()
          FileIO test = new FileIO();
          test.fileClose();
  • 문자열검색/조현태 . . . . 5 matches
          ofstream outputFile("result.out");
          outputFile << "자료 -> " << original << "\n찾을 문자열 -> " << such_word << "\n";
          outputFile << "Not found!";
          outputFile << "first found -> " << where;
          outputFile.close();
  • .vimrc . . . . 4 matches
         set viminfo='20,"50 " read/write a .viminfo file, don't store more
         map <F3> [{v]}zf " file folding
         map <F4> zo " file unfolding
         let $grepfile="*.[ch] *.cpp"
         filetype on
         filetype indent on
         filetype plugin on
         au BufNewFile *.cpp call InsertSkeleton()
         au BufNewFile *.h call InsertHeaderSkeleton()
          au BufNewFile,BufRead /tmp/cvs* set fenc=utf-8 enc=utf-8
          au BufNewFile,BufRead ChangeLog* set fenc=utf-8 enc=utf-8
  • ClassifyByAnagram/JuNe . . . . 4 matches
         def Anagram(inFile,outFile):
          for eachWord in inFile:
          print >> outFile, ' '.join(eachAnagram)
  • EffectiveSTL/Container . . . . 4 matches
         ifstream dataFile("ints.dat");
         list<int> data(ifstream_iterator<int>(dataFile),ifstream_iterator<int>()); // 이런 방법도 있군. 난 맨날 돌려가면서 넣었는데..--;
         ifstream dataFile("ints.dat");
         ifstream_iterator<int> dataBegin(dataFile);
  • Kongulo . . . . 4 matches
         class LenientRobotParser(robotparser.RobotFileParser):
          '''Adds ability to parse robot files where same user agent is specified
          '''Setup internal state like RobotFileParser does.'''
          robotparser.RobotFileParser.__init__(self)
          robotparser.RobotFileParser.parse(self, modified_lines)
          # Inv: Our cache contains neither a dir-level nor site-level robots.txt file
          fout = file("output.txt",'w');
  • PNGFileFormat/FormatUnitTestInPythonLanguage . . . . 4 matches
          #eightBytesFromFile = self.png.firstEightBytes()
          eightBytesFromFile = self.png.firstEightBytes()
          self.assertEqual( chr(eightBytes[i]), eightBytesFromFile[i] )
          fileCRC = chunkInfo[3]
          fileCRCInNum = [ord(fileCRC[0]), ord(fileCRC[1]), ord(fileCRC[2]), ord(fileCRC[3])]
          self.assertEqual(expectedCRC, fileCRCInNum)
          def __init__(self, filename):
          self.f = file(filename, 'r')
         [PNGFileFormat]
  • RubyLanguage/InputOutput . . . . 4 matches
          * File.new
          * File.open / File.close
          * 단 예외 발생시 File.close는 호출되지 않는다. ensure 구문에서 처리할 수 있다.
  • ScheduledWalk/임인택 . . . . 4 matches
         import java.io.File;
         import java.io.FileInputStream;
          = new DataInputStream(new FileInputStream(new File("input2.txt")));
  • ZIM/CRCCard . . . . 4 matches
         || 화일 송신 / 수신 요청 & 수락|| FileSender, FileReceiver ||
         |||||| FileReceiver ||
         |||||| FileSender ||
  • iText . . . . 4 matches
         import java.io.FileNotFoundException;
         import java.io.FileOutputStream;
          PdfWriter.getInstance(document, new FileOutputStream("Hello.pdf"));
          } catch (FileNotFoundException e) {
  • 데블스캠프2005/보안 . . . . 4 matches
         === fileio.cpp ===
         void saveToFile(char *filename, char *str)
          FILE *file = fopen(filename, "wb");
          fwrite(str, strlen(str), 1, file);
          fclose(file);
         long loadFromFile(char *filename, char *str)
          FILE *file = fopen(filename, "rb");
          fseek(file, 0, SEEK_END);
          long len = ftell(file);
          fseek(file, 0, SEEK_SET);
          fread(str, len, 1, file);
          fclose(file);
         === fileio.h ===
         void saveToFile(char *filename, char *str);
         long loadFromFile(char *filename, char *str);
  • 프로그래밍/DigitGenerator . . . . 4 matches
         import java.io.FileNotFoundException;
         import java.io.FileReader;
          BufferedReader br = new BufferedReader(new FileReader("test.txt"));
          } catch (FileNotFoundException e) {
  • 프로그래밍/Pinary . . . . 4 matches
         import java.io.FileNotFoundException;
         import java.io.FileReader;
          BufferedReader br = new BufferedReader(new FileReader("test.txt"));
          } catch (FileNotFoundException e) {
  • 프로그래밍/장보기 . . . . 4 matches
         import java.io.FileNotFoundException;
         import java.io.FileReader;
          br = new BufferedReader(new FileReader("test.txt"));
          } catch (FileNotFoundException e) {
  • ASXMetafile . . . . 3 matches
          * <ASX>: Indicates an ASX metafile.
          * <Abstract>: Provides a brief description of the media file.
          * <Title>: Title of the media file.
          * <Duration value = "00:00:00">: Sets the value attribute for the length of time a streaming media file is to be played.
          o Windows Media Services Server: File names will start with mms://.
          o HTTP Server: File names will start with http://.
          o Local or network drive: File names will start with file://.
          o ASX files, on the other hand, are small text files that can always sit on an HTTP server. When the browser interprets the ASX file, it access the streaming media file that is specified inside the ASX file, from the proper HTTP, mms, or file server.
          * ?sami="path of the source": Defines the path of a SAMI caption file within the <ref href> tag for media source.
          * [http://cita.rehab.uiuc.edu/mediaplayer/text-asx.html Creating ASX files with a text editor] - [DeadLink]
          * [http://cita.rehab.uiuc.edu/mediaplayer/captionIT-asx.html Creating ASX files with Caption-IT] - [DeadLink]
          * [http://msdn.microsoft.com/workshop/imedia/windowsmedia/crcontent/asx.asp Windows Media metafile] - [DeadLink]
  • BuildingWikiParserUsingPlex . . . . 3 matches
          def isImage(self, aFileUrl):
          extension = aFileUrl[aFileUrl.rfind(".")+1:]
  • CppUnit . . . . 3 matches
          * Library 화일 생성 : {{{~cpp ...cppunitexamplesexamples.dsw }}} 을 연뒤 {{{~cpp WorkSpace }}}의 {{{~cpp FileView }}}에서 {{{~cpp CppUnitTestApp files }}} 에 Set as Active Project로 맞춰준다.(기본값으로 되어 있다.) 그리고 컴파일 해주면 lib 폴더에 library 화일들이 생성될 것이다.
          a. Tools -> Options -> Directories -> Include files 에서 해당 cppunit
          * Tools -> Options -> Directories -> Library files 에서 역시 lib
         LINK : fatal error LNK1104: cannot open file "cppunitd.lib,"
          * VC6에서 작업하고 있는데요. CFileDialog를 통해 파일 path를 받으려고 하는데, TestRunner가 CFileDialog 명령을 수행하는 것보다 먼저 동작해 파일 경로를 받을 수 없습니다.. TestRunner가 실행되는 시점을 조절할 수 있나요? --[FredFrith]
         * 공간이 좁아 전부 올리기가 힘든데, file upload 할 수는 없나요? -- [FredFrith]
  • DebuggingSeminar_2005/DebugCRT . . . . 3 matches
         CRT의 기본 함수들의 출력은 디버그 메시지 윈도우이다. 이를 변경하기위해서는 _CrtSetReportMode()라는 함수를 이용해서 출력에대한 일반 목적지를 지정하고, _CrtSetReportFile()를 이용해서 특별한 스트림 목적지를 설정해야한다.
         || _CRTDBG_MODE_FILE || output stream ||
         {{{~cpp _HFILE _CrtSetReportFile(int reportType, _HFILE reportFile);
          ''두번째 인수는 파일 스트림의 _HFILE 형식의 포인터이거나 다음의 식별자들 중의 하나이다.''
         || _CRTDBG_FILE_STDERR || 표준 에러 스트림으로 전달 ||
         || _CRTDBG_FILE_STDOUT || 표준 출력 스트림으로 전달 ||
         || _CRTDBG_REPORT_FILE || 현재의 목적지를 리턴한다. ||
  • Eclipse와 JSP . . . . 3 matches
         Project 에서 File 선택 후 main.jsp 만든다!
          * 톰캣이 설치된 폴더를 Tomcat Home으로 설정 ex) C:\Program Files\Apache Software Foundation\Tomcat 5.5
          * Tomcat Base 설정 ex) C:\Program Files\Apache Software Foundation\Tomcat 5.5
  • ErdosNumbers/임인택 . . . . 3 matches
         def readFile(fileName):
          f = file(fileName, "r")
         def erdosNumber(fileName):
          lines = readFile(fileName)
          self.lines = readFile("sample.txt")
  • FileZilla . . . . 3 matches
         [http://filezilla.sourceforge.net 프로젝트 홈페이지]
         [임인택]이 사용하는 오픈소스 ftp 클라이언트. 그 전에는 alftp을 주로 사용했는데, 사용했던 시기가 alftp 가 약간 불안하게 동작했던 시기라서 아예 FileZilla로 전환했다. 기본적인 ftp 프로토콜 외에도 sftp 프로토콜까지 지원한다. 2.2.7 버전대로 올라오면서 한글까지 지원하여 이제는 더없이 좋은 ftp 클라이언트가 되었다. 그 외에도 편리한 사이트 매니저 기능등을 제공하지만 로컬 디렉토리를 브라우징할때 약간 불편한 면이 있다.
         FileZilla 외에도 FileZilla서버도 있다. :)
          http://zeropage.org/pub/wiki_image/filezilla.gif
  • IntelliJ . . . . 3 matches
          0. CVS 셋팅 : File - Project Properties - CVS 텝에서 Enable CVS Integration 체크
          4. Checkout - 이는 CVSROOT의 modules 에 등록된 project 들만 가능하다. CVS 관리자는 CVSROOT 의 modules 화일에 해당 프로젝트 디렉토리를 추가해준다.([http://cvsbook.red-bean.com/cvsbook.html#The_modules_File module file]) 그러면 IntelliJ 에 있는 CVS의 Checkout 에서 module 을 선택할 수 있다. Checkout 한다.
         || ctrl + E || Recent File. ||
  • JSP . . . . 3 matches
         2. Programfile 에서 Start Tomcat 후
         1. C:\Program Files\Apache Group\Tomcat 4.1\conf
         3. C:\Program Files\Apache Group\Tomcat 4.1\bin 의 startup
         4. C:\Program Files\Apache Group\Tomcat 4.1\webapps\ROOT 에 hello.jsp 파일 옮긴후
  • MFC/MessageMap . . . . 3 matches
          // Standard file based document commands
          ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
          ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
          ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
         #define WM_DROPFILES 0x0233
  • MoniWikiPlugins . . . . 3 matches
          * UploadFile
          * UploadedFiles
          * Gallery 간단한 갤러리(UploadFile매크로 이용)
  • PragmaticVersionControlWithCVS/Getting Started . . . . 3 matches
         File: color.txt Status: Locally Modified
         RCS file: /home/CVSHOME/sesame/color.txt,v
         RCS file: /home/CVSHOME/sesame/color.txt,v
         File: color.txt Status: Up-to-date
         RCS file: /home/CVSHOME/sesame/color.txt,v
         Working file: color.txt
         File: number.txt Status: Needs Patch
         RCS file: /home/CVSHOME/sesame/number.txt,v
         RCS file: /home/CVSHOME/sesame/number.txt,v
         RCS file: /home/CVSHOME/sesame/number.txt,v
         RCS file: /home/CVSHOME/sesame/number.txt,v
         Working file: number.txt
  • PragmaticVersionControlWithCVS/WhatIsVersionControl . . . . 3 matches
         == workspaces and manipulate files ==
         == project. module, and files ==
         {{{~cpp file1.java 1.11
         file2.java 1.7
         file3.java 1.10}}}
         public class File1 {
         public class File1 {
         public class File1 {
  • STLErrorDecryptor . . . . 3 matches
         Upload:FilesUnzipped.gif
         가) Visual C++가 설치된 디렉토리로 이동하고, 여기서 \bin 디렉토리까지 찾아 들어갑니다. (제 경우에는 D:\Program Files2\Microsoft Visual Studio .NET\Vc7\bin입니다.) 제대로 갔으면, 원래의 CL을 백업용으로 모셔다 놓을 폴더를 하나 만듭니다. (제 경우에는 '''native_cl'''이란 이름으로 만들었습니다.) 그리고 나서 CL.EXE를 그 폴더에 복사해 둡니다.
          * TOGGLE_FILE : 필터링 활성화를 토글링하는 파일이 위치할 디렉토리. 생각할 시간 없는 분은 STLfilt.zip의 압축을 푼 위치로 정해주세요.
         Upload:ProxyCLConfigFileCopy.gif
  • StaticInitializer . . . . 3 matches
         StaticInitialzer 에서 값만 치환하는 것으로 (상속클래스에서 해당 Class Variable 의 값을 바꿔주는식으로) 해결되는 문제라면 크게 어렵진 않다. 하지만, 만일 저 부분에 DB 나 File 등(또는 File 을 사용하는 Logger 등) 외부 자원을 이용하는 클래스를 초기화하게 된다면 사태는 더욱더 심각해진다. 처음부터 해당 Class 가 DB, File 등 큰 자원에 대해 의존성을 가지게 되는 것이다. 게다가 이는 상속을 하여 해당 부분을 Mock 으로 치환하려고 해도 StaticInitializer 가 먼저 실행되어버리므로 '치환'이 불가능해져버린다.
  • VisualStudio . . . . 3 matches
          * Show directories for:(다음 디렉토리 표시:) 드롭 다운 메뉴에서 Include Files(파일 포함)를 선택하고 include 파일이 위치한 디렉토리(예: C:\라이브러리폴더\include)를 입력합니다.
          * Show directories for:(다음 디렉토리 표시:) 드롭 다운 메뉴에서 Library Files(라이브러리 파일)를 선택하고 라이브러리 파일이 위치한 디렉토리(예: C:\라이브러리폴더\lib)를 입력합니다.
          * Show directories for:(다음 디렉토리 표시:) 드롭 다운 메뉴에서 Executable Files(실행 파일)를 선택하고 실행 파일이 위치한 디렉토리(예: C:\라이브러리폴더\bin)를 입력합니다.
  • html5/form . . . . 3 matches
          * http://cfile9.uf.tistory.com/image/133539014C76281A1B4E24
          * http://cfile23.uf.tistory.com/image/1212FF364C5A80AF697A7F
          * http://cfile1.uf.tistory.com/image/1131C2044C762BBE1A410D
          * http://cfile6.uf.tistory.com/image/175B81244C762F8741C325
          * http://cfile9.uf.tistory.com/image/126F6D054C76381D512E65
         == file upload ==
          * multi file upload
          * {{{<input type='file' multiple>}}}
          * file filtering
          * {{{<input type='file' accept="image/gif">}}}
          * files 속성
          var selectedFiles = document.getElementById("file").files;
          selectedFiles[0].name; //파일이름
          selectedFiles[1].size; //파일사이즈
          http://cfile30.uf.tistory.com/image/16593B0B4C774BE27544CA
          http://cfile3.uf.tistory.com/image/127695134C77472C21DF54
          http://cfile8.uf.tistory.com/image/186D8B0E4C774FD32BED8B
          http://cfile29.uf.tistory.com/image/20444E0B4C77793149EE87
  • 문자열연결/조현태 . . . . 3 matches
          ofstream outputFile("result.out");
          outputFile << "x => " << x << "\ny => " << y << "\nz => "<< x << y;
          outputFile.close();
  • 오목/곽세환,조재화 . . . . 3 matches
         #undef THIS_FILE
         static char THIS_FILE[] = __FILE__;
          ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  • 오목/민수민 . . . . 3 matches
         #undef THIS_FILE
         static char THIS_FILE[] = __FILE__;
          ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  • 오목/재니형준원 . . . . 3 matches
         #undef THIS_FILE
         static char THIS_FILE[] = __FILE__;
          ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  • 오목/재선,동일 . . . . 3 matches
         #undef THIS_FILE
         static char THIS_FILE[] = __FILE__;
          ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  • 오목/진훈,원명 . . . . 3 matches
         #undef THIS_FILE
         static char THIS_FILE[] = __FILE__;
          ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
          ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  • 이영호/nProtect Reverse Engineering . . . . 3 matches
         |ModuleFileName = NULL
         |CommandLine = ""C:\Program Files\Mabinogi\client.exe" code:1622 ver:237 logip:211.218.233.200 logport:11000 chatip:211.218.233.192 chatport:8000 setting:"file://data/features.xml=Regular, Korea""
         |CurrentDir = "C:\Program Files\Mabinogi"
         client.exe code:1622 ver:237 logip:211.218.233.200 logport:11000 chatip:211.218.233.192 chatport:8000 setting:"file://data/features.xml=Regular, Korea" 로 실행시키면 된다.
  • 3D업종 . . . . 2 matches
         헤더: C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\Include\gl
         라이브러리: C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\Lib
  • 5인용C++스터디/다이얼로그박스 . . . . 2 matches
         대화상자(DialogBox)는 최상위 윈도우(top-level window)의 자식 윈도우로서 일반적으로 사용자로부터 정보를 얻기 위해 사용된다. Dialog는 사용자들이 파일을 선택하여 열기 등의 작업을 쉽게 하도록 합니다. 파일 작업을 쉽게하기 위해 제공하는 컴포넌트가 FileDialog클래스이다. Dialog는 Frame윈도우와 비슷한데 그 차이점을 살펴보면, 대화상자는 윈도우에 종속적이기 때문에 그 윈도우가 닫히면 대화상자도 따라서 같이 닫히게 된다는 것이다. 또한 윈도우를 최소화시켜도 대화상자는 사라지게 된다.
          1-2 메뉴에 있는 File 에서 New를 선택을 하면 대화상자가 나온다.
  • 5인용C++스터디/멀티미디어 . . . . 2 matches
         - SND_FILENAME : 첫 번째 인수인 pszSound는 사운드 파일의 이름이다.
         HWND MCIWndCreate(HWND hwndParent, HINSTANCE hinstance, DWORD dwStyle, LPSTR szFile);
         szFile: MCIWnd생성시 오픈할 장치, 또는 AVI파일을 지정한다.
  • Android/WallpaperChanger . . . . 2 matches
         || 5/1 || Image Gallery에서 불러와서 크기조절 해주는 Crop 작성. File 입출력을 지원하면서 Side Effect로 DB 기록과 실제 File의 존재 유무를 판단해야하는 경우가 생김 ||
  • BeingALinuxer . . . . 2 matches
          [http://zeropage.org/~linuxer/tools/FileZilla_2_2_14_setup.exe FileZilla_2_2_14_setup.exe] - FTP, SFTP Client
  • ClassifyByAnagram/sun . . . . 2 matches
          System.out.println( "usage: java anagram.FindAnagram out_file < input_file" );
          out = new BufferedOutputStream( new FileOutputStream( args[0] ));
          System.out.println( "usage: java anagram.FindAnagram out_file < input_file" );
          out = new BufferedOutputStream( new FileOutputStream( args[0] ));
  • CodeRace/20060105/민경선호재선 . . . . 2 matches
          br = new BufferedReader(new FileReader("alice.txt"));
          } catch (FileNotFoundException e) {
  • Data전송 . . . . 2 matches
         === html File ===
         === receive.jsp File ===
  • DirectDraw . . . . 2 matches
         Include Files 에는 C:\DXSDK\INCLUDE를 [[BR]]
         Library Files 에는 C:\DXSDK\LIB를 추가해야한다.
  • HelpOnActions . . . . 2 matches
          * `!UploadFile`: 파일 업로드 UploadFile 페이지를 참조하세요.
  • HelpOnConfiguration . . . . 2 matches
         $path='./bin;c:/windows/command;c:/Program Files/gnuplot;c:/Program Files/vim/vim71'; # for win32
  • InterMap . . . . 2 matches
         JargonFile http://sunir.org/apps/meta.pl?wiki=JargonFile&redirect=
  • JSP/SearchAgency . . . . 2 matches
         import="java.util.*, java.io.BufferedReader, java.io.InputStreamReader, java.io.FileReader,
          in = new BufferedReader(new FileReader(queries));
  • Linux/디렉토리용도 . . . . 2 matches
         윈도우의 Windows, ProgramFiles 만으로 이루어진 그 구조가 왜 그렇게 그립던지 ㅠ.ㅠ
          * /etc/profile.d : 쉘 로그인 하여 프로파일의 실행되는 스크립트에 대한 정의가 있음.
          * /usr/local : 새로운 프로그램들이 설치되는 곳(windows의 Program Files 와 유사)
  • PNGFileFormat/FileStructure . . . . 2 matches
         === 1. PNG file 시그너처 ===
          * IDAT chunk : 실제 픽셀값. IDAT는 여러개가 올 수 있다. (see also [PNGFileFormat/ImageData])
         [PNGFileFormat]
  • PNGFileFormat/ImageData . . . . 2 matches
          * 자세한 내용은 [PNGFileFotmat/FilterAlgorithms] 참조.
         [PNGFileFormat]
  • PyIde/Scintilla . . . . 2 matches
         configFileAbsolutePath = os.path.abspath("stc-styles.rc.cfg")
         STCStyleEditor.STCStyleEditDlg(stcControl, language, configFileAbsolutePath)
  • Ruby/2011년스터디/서지혜 . . . . 2 matches
          pe32.szExeFile, pe32.th32ProcessID, pe32.cntThreads, pe32.th32ParentProcessID);
          if(0 == _tcscmp(pe32.szExeFile, target)){
  • STL/Miscellaneous . . . . 2 matches
         ifstream dataFile("ints.dat");
         ifstream_iterator<int> dataBegin(dataFile);
  • ServerBackup . . . . 2 matches
         def uploadFile(filename):
          f = open(filename,'rb') # file to send
          s.storbinary('STOR %s'%filename, f) # Send the file
          f.close() # Close file and FTP
         uploadFile('index.html')
         gpg --passphrase #{PASSWORD} --no-use-agent -c file
         gpg file
  • SmallTalk/강좌FromHitel/강의2 . . . . 2 matches
          (Sound fromFile: 'xxxxx.wav') woofAndWait; woofAndWait.
          (Sound fromFile: 'C:\Windows\Media\Ding.wav') woofAndWait; woofAndWait.
  • SmallTalk/강좌FromHitel/강의3 . . . . 2 matches
         Dolphin Smalltalk를 시작합니다. 그런 다음 File > Exit Dolphin 메뉴를 실
         여전히 화면에 큼지막한 디지털 시계가 표시되고 있을 것입니다. 이제 File
         이 파일은 '변경 기록 파일'(change log file)이라고 부릅니다. 이 파일 안
  • SmallTalk/강좌FromHitel/강의4 . . . . 2 matches
         Smalltalk 환경을 끝낼 때 File > Exit Dolphin 명령을 내리는 대신 알림판
         새로운 일터를 만들기 위해서는 File > New 메뉴를 사용하거나, 도구 모음에
  • TheJavaMan/설치 . . . . 2 matches
         1. '''File->New->Project'''로 프로젝트 하나를 만든다. (단축키로 실행해도 되고 도구모음에서 실행해도 되지만
         2. '''File->New->Class'''로 클래스 하나를 만든다. 자바는 C와는 다르게 클래스를 꼭 만들어야 한다. 그리고
  • VonNeumannAirport/남상협 . . . . 2 matches
          def readFile(self):
          Data = file("airport.in")
         vonAirport.readFile()
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 2 matches
         Eclipse에서 Java외의 다른것을 돌리려면 당연 인터프리터나 컴파일러를 설치해주어야 한다. 그래서 Lua를 설치하려했다. LuaProfiler나 LuaInterpreter를 설치해야한다는데 도통 영어를 못읽겠다 나의 무식함이 들어났다.
         설치된경로를 따라 Eclipse의 Profiler말고 Interpreter로 lua.exe로 path를 설정해주면 Eclipse에서 Project를 만든뒤 출력되는 Lua파일을 볼수 있다.
         <script file="HelloWoW.lua"/>
         <script file="HelloWoW.lua"/>
          <script file="HelloWoW.lua"/>
          <Script file="Frame.lua" />
          <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
         ## X-GeneratorComment: Basic project properties and project files will be automatically added during deployment. Properties added by the user will be copied without changes.
  • WikiSlide . . . . 2 matches
          * `AttachFile`: Attach files to a page (HelpOnActions/AttachFile)
  • ZeroPageServer/SubVersion . . . . 2 matches
         D:Program FilesTortoiseSVNbinTortoisePlink.exe" -l 계정 -pw 암호
          상단에 Public key for pasting into OpenSSH authorized_keys file 란에 있는 내용을 복사해서
          {{{~cpp AuthorizedKeysFile %h/.ssh/authorized_keys}}}[[HTML(<BR/>)]]
  • ZeroPageServer/old . . . . 2 matches
         || [http://openlook.org/distfiles/PuTTY/putty.exe putty 한글 입력 패치 적용] || 출처[http://fallin.lv/zope/pub/noriteo/putty 장혜식님의 홈] ||
          * (V) UploadFile action 동작
          * UploadFile 의 webpath가 이상했는데, 해당 스크립트의 구조적 생각의 차이라서 고쳤다.
  • zennith/dummyfile . . . . 2 matches
          FILE * fileHandle;
          fprintf(stderr, "Usage : %s [length of dummy file] [dummy file name]", argv[0]);
          fileHandle = fopen(argv[2], "wb");
          if (!fileHandle) {
          fprintf(stderr, "File open error occured.");
          fputc('\0', fileHandle);
          fclose(fileHandle);
          FILE * fileHandle;
          fprintf(stderr, "Usage : %s [length of dummy file] [dummy file name]", argv[0]);
          fileHandle = fopen(argv[2], "wb");
          if (!fileHandle) {
          fprintf(stderr, "File open error occured.");
          fclose(fileHandle);
          fwrite(frag, sizeof(char), fragSize, fileHandle);
          fclose(fileHandle);
  • 그래픽스세미나/5주차 . . . . 2 matches
          * ASE File Loader 구현하기
         === ASE File Format ===
          *SCENE_FILENAME ""
  • 데블스캠프2004/금요일 . . . . 2 matches
          * File -> New -> Project
          * File -> New -> Class
  • 데블스캠프2012/둘째날/후기 . . . . 2 matches
          * [권순의] - 앞에서 한 내용으로 인해 날로 먹기 강의가 되었군요. 뭐 APMSetup을 설치하고 FileZilla로 서버 사용한 것 까지는 해 봤는데 블로그 만들고 하는 짓은 안 해봐서 뭐.. 새로웠습니다. 근데 본인 특성상 블로그는 운영 안 할 것 같네요. 지워야 하나.. 아 컴터 하나 사서 서버로 쓰고 싶네
          * 근데 APMSetup안해도 Filezilla서버는 따로 돌릴수 있어 - [김준석]
  • 이규완 . . . . 2 matches
         #include "fileio.h"
          long len=loadFromFile("aaa.txt", str);
          saveToFile("bbb.txt", str);
  • 임인택/CVSDelete . . . . 2 matches
          deleteFiles(folderToDelete)
         def deleteFiles(folder):
          files = os.listdir(folder)
          for afile in files:
          print afile
          os.remove(folder+'/'+afile)
  • 창섭/배치파일 . . . . 2 matches
          1 File(s) copied
         여기서 쓰고 싶은 대로 적기만 하면 됩니다.제일 마지막행의 ^Z 는 파일의 제일 마지막 부분이라는 것을 도스에게 알려주는 코드로 < Ctrl + Z > 키 또는 F6 키를 누르면 됩니다. 그리고 엔터키를 한번더 누르면 '1 File(s) copied' 라는 메세지가 출력되는데, 이는 방금 ' copy con 파일명 ' 으로 작성된 문서파일이 성공적으로 만들어졌다는 뜻입니다.위의 문서파일은 확장자가 .BAT 로 붙었기 때문에 실행가능한 외부 명령어가 되는데, 배치파일은 명령이 기록되어 있는 순서대로 실행되기 때문에 timedate.bat 를 실행시키면 먼저 화면을 지우고 난뒤 시스템의 시간과 날짜를 설정합니다.간단한 배치파일은 'copy con 파일명' 으로 작성하는 것이 다른 프로그램의 도움없이 쉽고 빠르게 처리할 수 있습니다. 하지만 배치파일이 조금 길거나 작성중에 수시로 편집할 일이 생기는 경우에는 불가능합니다. 'copy con 파일명' 으로 파일을 작성하면 행으로 다시돌아갈 수 없을 뿐 아니라 수정이 불가능하기 때문입니다. 그러므로 배치파일을 만들 필요가 있을때는 문서 에디터를 이용하는 것이 좋습니다.
         for %d in (read,wh,file) do hlist %d*.* ☞ 도스 프롬프트에서 실행시
         두번째는 READ,WH,FILE 를 순서대로 %d 환경변수에 대입하여 차례대로
          HLIST READ*.*, HLIS TWH *.* , HLIST FILE *.* 를 실행한 것과 동일한 결과를 얻게 됩니다.
  • 0PlayerProject . . . . 1 match
          . FileSize/String : 15.7 MiB
  • 2학기파이선스터디/모듈 . . . . 1 match
         ['__builtins__', '__doc__', '__file__', '__name__', 'add', 'c', 'mul']
         ['_StringTypes', '__builtins__', '__doc__', '__file__', '__name__', '_float', '_idmap', '_idmapL', '_int', '_long', 'ascii_letters', 'ascii_lowercase', 'ascii_uppercase', 'atof', 'atof_error', 'atoi', 'atoi_error', 'atol', 'atol_error', 'capitalize', 'capwords', 'center', 'count', 'digits', 'expandtabs', 'find', 'hexdigits', 'index', 'index_error', 'join', 'joinfields', 'letters', 'ljust', 'lower', 'lowercase', 'lstrip', 'maketrans', 'octdigits', 'printable', 'punctuation', 'replace', 'rfind', 'rindex', 'rjust', 'rstrip', 'split', 'splitfields', 'strip', 'swapcase', 'translate', 'upper', 'uppercase', 'whitespace', 'zfill']
          File "<pyshell#17>", line 1, in ?
  • 2학기파이선스터디/문자열 . . . . 1 match
          File "<pyshell#40>", line 1, in ?
  • 3DGraphicsFoundationSummary . . . . 1 match
         Define the LoadBMPfile(char *filename) function
         assign LoadBMPFile("filename.bmp") to each texRec[i]
  • 5인용C++스터디 . . . . 1 match
          * '''숙제 및 결과물은 UploadFile을 참고하여 올리면 됩니다.'''
  • 5인용C++스터디/에디트박스와콤보박스 . . . . 1 match
          ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  • APlusProject/PMPL . . . . 1 match
         ==== Use Case RoseFile ====
  • AcceleratedC++/Chapter9 . . . . 1 match
          === 9.5.3 Entire Source File ===
  • AttachmentMacro . . . . 1 match
         See also UploadFile
  • BasicJAVA2005/실습2/허아영 . . . . 1 match
          JMenu fileMenu = new JMenu("File");
          fileMenu.setMnemonic('F');
          fileMenu.add(exitItem);
          bar.add(fileMenu);
  • Bigtable기능명세 . . . . 1 match
          1. 태블릿 서버에게 받은 SSTableID를 DFSFileName으로 변환한다.
  • CPPStudy_2005_1 . . . . 1 match
         || 8/8 || - || Chapter9장만 || chapter 9장 스터디|| [CppStudy_2002_2/STL과제] [FileInputOutput] ||
  • CVS/길동씨의CVS사용기ForLocal . . . . 1 match
         SET PATH=%PATH%;"C:Program FilesGNUWinCvs 1.3"
         cvs add: scheduling file `HelloJava.java' for addition
         cvs add: use 'cvs commit' to add this file permanently
         RCS file: c:CVSLocal/HelloJava/HelloJava.java,v
         RCS file: c:CVSLocal/HelloJava/HelloJava.java,v
         Working file: HelloJava.java
         RCS file: c:CVSLocal/HelloJava/HelloJava.java,v
  • CVS/길동씨의CVS사용기ForRemote . . . . 1 match
         SET PATH=%PATH%;"C:\Program Files\GNU\WinCvs 1.3"
         cvs server: scheduling file `HelloWorld.cpp' for addition
         cvs server: use 'cvs commit' to add this file permanently
         RCS file: /home/CVS/HelloWorld/HelloWorld.cpp,v
         RCS file: /home/CVS/HelloWorld/HelloWorld.cpp,v
         Working file: HelloWorld.cpp
         RCS file: /home/CVS/HelloWorld/HelloWorld.cpp,v
  • Class/2006Fall . . . . 1 match
          === [(zeropage)FileStructureClass] ===
  • ClassifyByAnagram/김재우 . . . . 1 match
          e.printStackTrace(); //To change body of catch statement use Options | File Templates.
  • ComputerGraphicsClass/Report2004_1 . . . . 1 match
         (UploadFile 매크로 살린뒤 추가 예정)
  • CssMarket . . . . 1 match
         CSS 로 다음을 사용해 보세요. UploadFile 에 저장되어 있습니다.
  • DevelopmentinWindows/APIExample . . . . 1 match
          POPUP "File"
         // Microsoft Developer Studio generated include file.
  • EmbedAudioFilesForFireFox . . . . 1 match
         <EMBED SRC=somefile type="application/x-mplayer2" width="300" height="45"></embed>
          <param name="FileName" value="URL" />
  • ExecuteAroundMethod . . . . 1 match
          void openFilenClose()
  • FileInputOutput . . . . 1 match
         fin = file('input.txt')
         fout = file('output.txt.','w')
         InputStreamReader isr = new InputStreamReader(new FileInputStream(fileName));
  • Gof/Facade . . . . 1 match
         Choices operating system [CIRM93] 은 많은 framework를 하나로 합치기 위해 facade를 사용한다. Choices에서의 key가 되는 추상객체들은 process와 storge, 그리고 adress spaces 이다. 이러한 각 추상객체들에는 각각에 대응되는 서브시스템이 있으며, framework로서 구현된다. 이 framework는 다양한 하드웨어 플랫폼에 대해 Choices에 대한 porting을 지원한다. 이 두 서브시스템은 '대표자'를 가진다. (즉, facade) 이 대표자들은 FileSystemInterface (storage) 와 Domain (address spaces)이다.
  • Gof/FactoryMethod . . . . 1 match
          Ducument에제에서 Document클래스는 factory method에 해당하는, 자료를 열람하기 위한 기본 파일 다이얼로그를 생성하는 CreateFileDialog이 호출을 정의할수 있다. 그리고 Document sub클래스는 이러한 factory method를 오버 라이딩해서 만들고자 하는 application에 특화된 파일 다이얼로그를 정의할수 있다. 이러한 경우에 factory method는 추상적이지 않다. 하지만 올바른 기본 구현을 제공한다.
  • HardcoreCppStudy/두번째숙제/CharacteristicOfOOP/변준원 . . . . 1 match
         객체 지향 프로그램의 중요한 특징으로 하나의 함수 이름이나 심볼이 여러 목적으로 사용될 수 있는 다형성(Polymorphism)을 들 수 있다. 객체 지향에서의 다형성이란, 복수의 클래스가 하나의 메세지에 대해 각 클래스가 가지고 있는 고유한 방법으로 응답할 수 있는 능력을 말한다. 즉, 별개로 정의된 클래스들이 ㅌ은 이름의 함수를 별도로 가지고 있어 하나의 메세지에 대해 각기 다른 방법으로 그 메세지를 수행할 수 있는 것을 의미한다. 예를 들어, 여러 가지 화일(file)들을 프린트 하는 함수를 생각해 보자. 화일에는 간단한 텍스트 화일(text file), 문서 편집기로 만든 포멧 화일(format file), 그래픽을 포함하는 화일(file with graphics) 등 여러 가지가 있다. 이들 각각의 화일들은 프린트 하는 방법이 모두 다르다, 객체 지향에서는 아래처럼 각 종류의 화일을 별도의 클래스로 정의하고, 각각의 화일 종류별로 Print라는 함수를 화일의 형태에 맞게 구현한다.
         Text file -> Print();
         Formatted file -> Print();
         File with graphics -> Print();
  • InnoSetup . . . . 1 match
          * [http://www.jrsoftware.org/is3rdparty.php Inno Setup Third-Party Files]
  • Java/JSP . . . . 1 match
          * [JSP/FileUpload]
  • Java/ModeSelectionPerformanceTest . . . . 1 match
          e.printStackTrace(); //To change body of catch statement use Options | File Templates.
  • JavaStudy2004 . . . . 1 match
          * ''''숙제 및 파일 업로드는 페이지 하단의 UploadFile을 참고해서 하시면 됩니다''''
  • MFC/HBitmapToBMP . . . . 1 match
         // [*filename] : 만들어질 bmp파일이름
         BOOL CImageTool::ExportAsBMP(int type, char *filename, CDC *pDC,
          BITMAPFILEHEADER header;
          FILE *fp;
          header.bfSize = size+sizeof(BITMAPFILEHEADER);
          header.bfOffBits = sizeof(BITMAPFILEHEADER)+sizeof(BITMAPINFOHEADER)+
          if ((fp=fopen(filename,"wb")) == NULL)
          if (fwrite(&header,sizeof(BITMAPFILEHEADER),1,fp)!=0)
         // [*size] : File Size (반환되는 값)
  • MFC/Serialize . . . . 1 match
          클래스 안에는 CFile 객체가 있으며, CArchive는 실제로 이 클래스를 통해서 파일 입출력을 전담시킨다.
  • MFC/Socket . . . . 1 match
          * m_dataSocket.Connect(dlg1.m_strIpAddress, createBlkFile)
  • MineFinder . . . . 1 match
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=57&filenum=1 1차일부분코드] - 손과 눈에 해당하는 부분 코드를 위한 간단한 예제코드들 모음. 그리고 지뢰찾기 프로그램을 제어하는 부분들에 대해 Delegation 시도. (CMinerControler 클래스는 처음 '막 짠' 코드로부터 지뢰찾기 제어부분 함수들을 클래스화한것임)
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=58&filenum=1 1차제작소스]
         Profile: Function timing, sorted by time
         GetPixel 은 어디서 호출될까? Edit->Find in Files 를 하면 해당 프로젝트내에서 GetPixel이 쓰인 부분들에 대해 알 수 있다.
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=59&filenum=1 2차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=60&filenum=1 3차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=60&filenum=2 4차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=61&filenum=1 5차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=62&filenum=1 6차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=63&filenum=1 98호환버그수정소스]
  • MoniWikiOptions . . . . 1 match
          * 윈도우즈 환경이라면 {{{$path='./bin;c:/program files/vim/vimXX';}}}와 같은 식으로 설정한다.
          * UploadFile에서 허용되는 확장자를 지정한다.
  • NoSmokMoinMoinVsMoinMoin . . . . 1 match
         전 현재 배포판인 MoinMoin 1.0 을 커스터마이징해서 썼으면 합니다. ''(http://acup.wo.to 에 가보시면 MoinMoin 1.0 을 커스터마이징한 위키를 구경할 수 있습니다.)'' ["노스모크모인모인"]에도 현재 욕심나는 기능이 많긴 하지만 MoinMoin 1.0 의 AttachFile 기능이 참 유용하다고 생각하고 있습니다. 그 밖에 Seminar:YoriJori 프로젝트가 다소 정체되어 있다는 느낌이 들기도 한 것이 이유가 될수 있겠습니다. MoinMoin 1.0 설치 및 커스터마이징은 2 ManDay 정도만 투자하면 가능하리라 생각됩니다. --["이덕준"]
  • OeKaki . . . . 1 match
         [[UploadedFiles]]
  • PNGFileFormat/FilterAlgorithms . . . . 1 match
         [PNGFileFormat]
  • PersonalHistory . . . . 1 match
          * [http://xfs2.cyworld.com File sturucture class team project]
  • ProgrammingPearls/Column1 . . . . 1 match
         for e in inputFile:
  • ProjectGaia/기록 . . . . 1 match
          * 12/9 : Pc실 Key Sequential File 초안 , Extendible Hash 초안 구현
  • ProjectZephyrus/Afterwords . . . . 1 match
          - 처음부터 고려하여 각 IDE별 Setting 화일을 업데이트 시켜주기. Batch File 등으로 자동화하기. IDE 의 통일 고려.
  • Ruby/2011년스터디 . . . . 1 match
          * 파일 다루는 건 File.open 안에 { } 괄호 안에서 입력해야 함
  • SearchAndReplaceTool . . . . 1 match
          * HandyFile Find and Replace (http://www.silveragesoftware.com/hffr.html)
  • SeparatingUserInterfaceCode . . . . 1 match
         도메인모델로부터 퍼시스턴스 부분이 분리되었을때, 도메인 코드의 어떠한 부분도 퍼시스턴트 레이어 코드와 관련이 없도록 해야 한다. 만일 MySQL Repository을 작성했을때 당신은 MySQL 인터페이스를 통해 할 수 있는 모든 것들을 Flat File Repository interface 로 작성할 수 있어야 한다. MySQL 코드로부터 어떠한 코드도 복사하지 않고.
  • SilentASSERT . . . . 1 match
         - File Mode
  • SubVersionPractice . . . . 1 match
         [http://subversion.tigris.org/files/documents/15/25364/svn-1.2.3-setup.exe Download Subversion]
         svn add AddedFile
  • TeachYourselfProgrammingInTenYears . . . . 1 match
          * 역주 5 - ASCII BOOKS 로부터 「학카즈 대사전」(후쿠사키 타카히로역)로서 국역이 나와 있다.덧붙여 본문에 인용되고 있는 ESR 의 문장이 어느 문장으로부터의 인용인가는 몰랐다.본문에서는 ESR 는 The New Hacker's Dictionary 의 저자로서 이름을 들 수 있지만, 현재의 Jargon File 에는 해당 문장은 없었다.
  • TestDrivenDatabaseDevelopment . . . . 1 match
         프로그래밍을 하다가, 만일 여기서부터 interface 를 추출한뒤에 거꾸로 MockRepository 를 만들 수 있을까 하는 생각을 했다. (interface 를 추출함으로서 같은 메소드에 대해 다른 성격의 Repository, 즉 File Based 나 다른 서버 로부터 데이터를 얻어오는 Repository 등 다형성을 생각해볼 수 있는 것이다.)
  • UbuntuLinux . . . . 1 match
          AuthUserFile /home/trac/.htaccess
  • ViImproved/설명서 . . . . 1 match
         ▶File 조작
          :w <file>↓ 파일 name에 써넣기
          :w! <file>↓ 파일 name에 겹쳐 써넣기
          :e <file>↓ 새로운 파일의 편집
          :e+ <file>↓ 최종 행부터 편집 개시
          :e #↓ 직전에 편집하고 있던 file을 편집
          :e! #↓ 변경 점을 버리고 직전에 편집한 file을 편집
          :r <file> ↓ <file>을 현재의 문서로 read
          :nr <file>↓ n행 아래로 <file>을 read
         : ex모드(편집) ^f 앞 방향으로 한 화면 스크롤 :r <file> <file>을 현재의 문서로 read
         ( 전 sentence ^g 현재줄의 위치를 화면출력 :nr <file> n줄로<file>을 read
         0(영) 현 line의 첫번째 문자로 이동 I 줄의 첫번째에 삽입 :11,22w <file> 줄 11과 12사이 내용 저장
         $ 현 line의 끝으로 이동 ^i tab (삽입모드에서) :w >> <file> 작업중인 화일<file>에 저장
         spacebar 다음문자 L 화면의 마지막 줄로 이동 :e <file> vi를 나가지 않고<file>편집
         ? 뒷 방향 탐색 M 화면의 중간으로 이동 :n <files> 편집하기 위한 화일의 새로운 리스트로서<file>작성
         , 마지막f,F,t,T명령의 역방향으로 실행 n 마지막 검색 다시 수행 :e# 직전에 편집하고 있던 <file>작성
  • WebLogicSetup . . . . 1 match
         http://localhost:7001/nameOfFile.jsp 의 형식을 취한다.
  • XML/Csharp . . . . 1 match
         [http://www.c-sharpcorner.com/UploadFile/shehperu/SimpleXMLParser11292005004801AM/SimpleXMLParser.aspx Simple XML Parser in C#]
  • ZeroPageServer/Wiki . . . . 1 match
          - 파일 올리기가 가능합니다. 5메가 UploadFile
  • ZeroPage_200_OK/소스 . . . . 1 match
          <span>File</span>
          <input name="upload" type="file"/><br/>
  • wiz네처음화면 . . . . 1 match
          * MP3 file download site to listen English - [http://iteslj.org/links/ESL/Listening/Downloadable_MP3_Files Listening English]
  • woodpage/VisualC++HotKeyTip . . . . 1 match
          *Find in File 로 현재 페이지가 아닌 전체 파일에서 찾아줌 소스분석할때 필수
  • 구글을지탱하는기술 . . . . 1 match
          * [GFS(Google File System)] : 구글 분산 파일 시스템
  • 노스모크모인모인 . . . . 1 match
          * UploadFile
  • 데블스캠프2003/ToyProblems . . . . 1 match
         FileInputOutput [파일입출력] RandomFunction
  • 데블스캠프2006/SSH . . . . 1 match
         = File Transfer Client =
          * Makefile 작성 아래 파일명을 자신의 파일명으로 작성
  • 데블스캠프2006/월요일 . . . . 1 match
         ||am 04:00~06:00 ||[데블스캠프2006/CPPFileInput] [http://zerowiki.dnip.net/~namsangboy/schoolScore.html 데블스캠프2006/성적관리프로그램] [http://zeropage.org/svn/namsangboy/SchoolScore/SchoolScore.cpp Source]|| 남상협 (01) ||
  • 데블스캠프2011/넷째날/Git/권순의 . . . . 1 match
          cout << "Fail to Load File" << endl;
  • 새싹교실/2012/새싹교실강사교육/4주차 . . . . 1 match
         - 변수, 제어문, 함수, 배열, 포인터, 구조체 복습 복습 + File I/O -
          FILE *ftr = fopen("C:\\입출력함수.txt","w");
          FILE *ftr2;
          FILE *fp_source, *fp_dest;
         3.2 FILE 구조체
  • 새싹교실/2012/주먹밥 . . . . 1 match
          * 운영체제는 파일 시스템을 관리합니다. 관련해서 이번에 가르쳐주는것은 *(포인터:Pointer)관련해서 FILE 구조를 메모리 참조를 통해서 하는것을 알려주게 되었습니다. 파일(File)은 메모리주소로부터 시작되고 운영체제를 이를 관리하기 때문에 C에서 지원하는 라이브러리를 통해 운영체제로 부터 파일을 관리하는 정보를 가진 FILE 구조체를 불러오게 됩니다. 그래서 우리는 *를 통해 주소값을 따라가서 FILE구조체로 그 정보를 얻어오게 되죠. Good Good!
  • 서지혜 . . . . 1 match
         = PROFILE =
          * 핵심 가치와 기술 몇가지(Master-Slave, MapReduce, File System, Index Block 등)
  • 수업평가 . . . . 1 match
         ||FileStructureClass || 0 || -1 ||-1 || 2 || 0 || 2 ||0 ||
  • 안혁준 . . . . 1 match
         [말없이고치기], [SignatureSurvey], [PNGFileFormat]
  • 영호의바이러스공부페이지 . . . . 1 match
         files. This aint for you.
          Symptoms: COMMAND.COM & .COM file growth
         files
          .COM file infector, and it will infect COMMAND.COM.
          The first time a file infected with the 163 COM Virus is executed,
          the virus will attempt to infect the first .COM file in the
          current directory. On bootable diskettes, this file will normally
          be COMMAND.COM. After the first .COM file is infected,each time
          an infected program is executed another .COM file will attempt to
          be infected. Files are infected only if their original length is
          Infected .COM files will increase in length by 163 bytes, and have
          infection occurred. Infected files will also always end with this
          org 100h ;orgin of all COM files
         ;this is a replacement for an infected file
          add bp,103h ;a COM file
          mov ah,4Eh ;find first file
          jc loc_6 ;no files found? then quit
          mov dx,9Eh ;offset of filename found
          mov ax,3D02h ;open file for read/write access
          mov ah,3Fh ;read from file
  • 오픈소스검색엔진Lucene활용 . . . . 1 match
          * 지원 된다. 하지만 SearchFiles.java 예제 소스를 조금 수정 해야 한다.
  • 이영호/끄적끄적 . . . . 1 match
         FILE *fp;
          fprintf(stderr, "Usage: %s input_file", argv[0]), exit(1);
         // File에서 array로 바뀐 것을 읽어와 함수를 수행 하는 것을 count-1번 반복한다.
  • 임인택 . . . . 1 match
         [http://www.sporadicnonsense.com/files/FileZilla_ss.jpg]
  • 정렬 . . . . 1 match
          파일 입출력을 사용해야 합니다. SeeAlso FileInputOutput 정렬의 방법은 무엇이어도 좋습니다.
  • 정모/2012.9.10 . . . . 1 match
          [http://wiki.zeropage.org/wiki.php/Uploaded%20Files?action=download&value=OpenCamp.png 타임테이블]
  • 코드레이스출동/CleanCode . . . . 1 match
          * File I/O
  • 큐와 스택/문원명 . . . . 1 match
         cin 이 string을 입력 받는 코드는 {{{~cpp C:\Program Files\Microsoft Visual Studio\VC98\Include\istream}}} 에 정의 되어 있습니다. 궁금하시면, Debug 모드로 따라가 보세요.
  • 타도코코아CppStudy . . . . 1 match
          * FileInputOutput
  • 파일입출력 . . . . 1 match
         #redirect FileInputOutput
Found 199 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.4381 sec