CreatFile API

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lou

    CreatFile API

    What's the .NET equivalent to "CreateFile " API?
    -Lou


  • Tom Shelton

    #2
    Re: CreatFile API

    On Oct 10, 3:35 pm, "Lou" <lou.gar...@com cast.netwrote:
    What's the .NET equivalent to "CreateFile " API?
    -Lou
    That depends on what your using it for :) If your using it for basic
    file manipulation, then you will want to take a look at the classes in
    the System.IO namespace hiearchy.

    --
    Tom Shelton

    Comment

    • Cor Ligthert[MVP]

      #3
      Re: CreatFile API

      Lou,

      I think that the most in place is the File Class with his methods, have a
      look for that, but as Tom wrote, their is much more than that.

      Provides static methods for the creation, copying, deletion, moving, and opening of a single file, and aids in the creation of FileStream objects.


      Cor

      Comment

      Working...