CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2008
    Posts
    6

    POSIX file library

    Hi,

    I am new to Linux related C++ dev. Can somebody guide me towards Posix equavilent of Windos File API. Few lines of code or some good reference would be great. Thanks

  2. #2
    Join Date
    Jul 2002
    Posts
    2,543

    Re: POSIX file library

    What is "Windows File API"? If you want to read/write files, use fopen/fread etc. C library functions, or C++ streams. To access file system, you can use portable Boost Filesystem library: http://www.boost.org/doc/libs/1_51_0.../doc/index.htm

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured