Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C#
  4. File creation and naming increment

File creation and naming increment

Scheduled Pinned Locked Moved C#
questionsysadminhelp
25 Posts 8 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P PIEBALDconsult

    Didn't the original poster mention the API?

    E Offline
    E Offline
    Ennis Ray Lynch Jr
    wrote on last edited by
    #21

    ??

    Need software developed? Offering C# development all over the United States, ERL GLOBAL, Inc is the only call you will have to make.
    If you don't ask questions the answers won't stand in your way.
    Most of this sig is for Google, not ego.

    T P 2 Replies Last reply
    0
    • E Ennis Ray Lynch Jr

      ??

      Need software developed? Offering C# development all over the United States, ERL GLOBAL, Inc is the only call you will have to make.
      If you don't ask questions the answers won't stand in your way.
      Most of this sig is for Google, not ego.

      T Offline
      T Offline
      Terick
      wrote on last edited by
      #22

      I'm using C# with ASP.NET.

      1 Reply Last reply
      0
      • P PIEBALDconsult

        Didn't the original poster mention the API?

        E Offline
        E Offline
        Ennis Ray Lynch Jr
        wrote on last edited by
        #23

        Using the Win32 API is a perfectly valid way to overcome limitations in .NET. (Or at least a way to cut off your nose to spite your face)

        Need software developed? Offering C# development all over the United States, ERL GLOBAL, Inc is the only call you will have to make.
        If you don't ask questions the answers won't stand in your way.
        Most of this sig is for Google, not ego.

        1 Reply Last reply
        0
        • E Ennis Ray Lynch Jr

          ??

          Need software developed? Offering C# development all over the United States, ERL GLOBAL, Inc is the only call you will have to make.
          If you don't ask questions the answers won't stand in your way.
          Most of this sig is for Google, not ego.

          P Offline
          P Offline
          PIEBALDconsult
          wrote on last edited by
          #24

          Oh, no, I see, you did.

          1 Reply Last reply
          0
          • T Terick

            Thank you all for your posts. It's been helpful. I'm still a little stuck, but I have the general idea. The files may get deleted, so I will need to take that into account. Also, I'm not using any database and for this application wont be using one. This is what I have so far. Please let me know if there are better methods:

            public void filecount(string file)
            {
            int x;
            int y;
            string file;

            int filepaths = Directory.GetFiles(@"C:\Desktop\Request", "*txt").Length;
            x = filepaths +1;

            StreamWriter sw;
            sw = File.CreateText(@"C:\Desktop\Request\Text" +y +".txt");
            file = Path.GetFileName(@"C:\Desktop\Request\Text" +y +".txt").ToString;
            sw.Close();

            return file;
            }

            public void btn_Click(object sender, EventArgs e)
            {
            filecount(file);
            }

            Thanks again for helping a newbie out!

            R Offline
            R Offline
            riced
            wrote on last edited by
            #25

            This won't work - in fact I don't think it will compile. 1 The return type is void but the function tries to return a string. 2 The parameter name (file) conflicts with the local variable also called file. 3 The value of y is not set but is used to construct the file name. Couple of other comments. 1 Why use the x and y variables when you have filepaths. You could just set it to Directory.GetFiles(@"C:\Desktop\Request", "*txt").Length + 1. Then use it instead of x or y. 2 This approach does not deal with deleted files. Suppose there are three files originally (text1.txt, text2.txt, text3.txt). Then text1.txt is deleted. What will the file count be? 3 The function is named filecount but it actually tries to return the next filename. 4 Read some of the suggestions carefully - there's good stuff in them that should solve the problem. Regards David R

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups