Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Ok I need to ask about a lot of graphics?


gamemaker123825
 Share

Recommended Posts

Hi, I have this folder that has a lot of title sets, They all have deference names and I need to get them all to numbers instead of names, is there a program that will rename all my title sets, because it will like take a really long time to change the names to numbers :) Thanks for letting me post Here eclipse :)
Link to comment
Share on other sites

```

string folder1 = "dir here";
string folder2 = "dir here";
int id = 1;

foreach (string file in Directory.GetFiles(Folder1))
{
File.Copy(folder1 + file, folder2 + id + ".png");
id++;
}

```
This is just something I wrote up in C#. You don't really need any fancy software.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...