Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8097597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T21:48:50+00:00 2026-06-05T21:48:50+00:00

Who can help me to fix the following problem? Here is the issue: in

  • 0

Who can help me to fix the following problem? Here is the issue: in a form POST i made people can upload files. The code below check if in the “uploads” folder there another file with the same name. If so, files are renamed as this example:

hallo.txt
1_hallo.txt
2_hallo.txt

… and so on.

This is the code used:

$OriginalFilename = $FinalFilename = $_FILES['uploaded']['name'];
// rename file if it already exists by prefixing an incrementing number
$FileCounter = 1;
while (file_exists( 'uploads/'.$FinalFilename ))
$FinalFilename = $FileCounter++.'_'.$OriginalFilename;

I would like to rename files in a different way. progressive numbers should be AFTER the file and, of course, before the extention. This is the same example of before but in the way i want:

hallo.txt
hallo_1.txt
hallo_2.txt

… and so on.

How can i modify the code to reach that result?
Thank you in advance and sorry for my newbie-style question. I’m really newbie! 🙂

Mat

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T21:48:51+00:00Added an answer on June 5, 2026 at 9:48 pm

    Just change the $FinalFilename:

    $FinalFilename = pathinfo($OriginalFilename, PATHINFO_FILENAME) . '_' . $FileCounter++ . '.' . pathinfo($OriginalFilename, PATHINFO_EXTENSION);
    

    Or (better if you have a lot of files with the same name and often iterate more than once):

    $filename = pathinfo($OriginalFilename, PATHINFO_FILENAME);
    $extension =  pathinfo($OriginalFilename, PATHINFO_EXTENSION);
    while (file_exists( 'uploads/'.$FinalFilename ))
        $FinalFilename = $filename . '_' . $FileCounter++ . '.' . $extension;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Who can help me make the following query work... Both tables have the fields
Dear everybody who can help, I have this PHP > MongoDB problem, I want
I hope there's a SharePoint expert here on SO who can help with this.
Who can help me to translate this XML Schema pattern [0-9]+-([0-9]|K) to java regular
Who can help me with regular expression? I need to remove a part of
To anyone who can help, Thanks Okay, so I have a database holding a
I hope there's someone who can help me suggest a suitable data model to
who can explain code that it's the core of the twitter snowflake. long nextId
who can give me a simple code , i want a simplest way to
So I get my logcat spammed by this datarouter error. Anyone who can help

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.