files

  1. SomeRandomOnlineDev

    How is this for a basic file creation function?

    void createFile() { /* * This function creates 3 variables, fileName, an array called fileData, and finalFileData * It asks the user to name the file it will create * we then create a counter variable, it count the lines and...
  2. octola

    Use of Microsoft.Office.Interop.Outlook

    Hello, Is it possible to retrieve the structure tree of Outlook (I mean to know which files there are, which subfolders, etc....) ? I don't find clear documentation about how to use the namespace Microsoft.Office.Interop.Outlook. Does someone have some informations ? Sorry for my english
  3. G

    Copy files and folders - UI is unresponsive

    Hello, part of the program which I'm working on should copy all files and folders from the selected path to the destination path (do a backup). And this the code being used: foreach (string dirPath in Directory.GetDirectories(from_directory, "*", SearchOption.AllDirectories))...
Back
Top Bottom