CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2011
    Location
    NY
    Posts
    5

    portable method of creating a directory

    I'm looking for a way my program to create a directory if the directory doesn't already exist, but all of the methods I've seen are either platform or library dependent. It probably doesn't help that I'm just learning C++ though.

  2. #2
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: portable method of creating a directory

    Nothing in the standard library directly addresses the file system. The best you'll find is Boost.Filesystem. I think that may be included in TR2, so it may eventually make it into the standard library, but not for a while.

  3. #3
    Join Date
    Oct 2011
    Location
    NY
    Posts
    5

    Re: portable method of creating a directory

    Ok, Thank You

Tags for this Thread

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