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

  • Home
  • SEARCH
  • 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 8326749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T00:52:13+00:00 2026-06-09T00:52:13+00:00

Is there a function I can use that converts dodgy filenames with good filenames?

  • 0

Is there a function I can use that converts dodgy filenames with good filenames?

I’m processing a large amount of photos, and very occasionally, my script stops because the uploader has put a curly symbol (~) in the filename. I’m also now wondering if there are any other bad symbols that can’t be in a filename and how to escape them.

I’m looping through these files using VBScript’s FileSystem Object, similar to the following:

For Each File In Files
    If InStr(UCase(File.Name), ".JPG") > 0 Then
        '// do stuff
    End If
Next
  • 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-09T00:52:15+00:00Added an answer on June 9, 2026 at 12:52 am

    You can make a function that will return a ‘cleaned’ filename like:

    function MakeNormal(filename)
        dim re : Set re = new regexp
    
        re.Pattern = "[^\w :\\\.]"
        re.Global = True
    
        MakeNormal = re.Replace(filename, "_")
    
    end function
    
    msgbox MakeNormal("C:\Temp\normal filename.txt")
    msgbox MakeNormal("C:\Temp\special ~!@#$%^&*() filename.txt")
    
    ' returns: "C:\Temp\normal filename.txt" and "C:\Temp\special __________ filename.txt"
    

    And replace the name of the file with the cleaned one. Becomes risky when you have two files that are only unique on the special characters.

    Above is the ‘whitelist’ variant, if you prefer a ‘blacklist’ version, you can replace the pattern for something like [~!@#$%^&()]

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is there a wordpress function that I can use to detect pages? example of
Is there a php function that someone can use to automatically detect if an
Are there any opencv function like cvHoughCircles() that can use for square detection programming
I use plugin wp-type, there I can make costum pages, this plugin have function
Is there a function that can truncate or round a Double? At one point
Is there a function that can round a float in Fsharp? Something like round(3.21156,3)
Is there any javascript function that can encrypt data: For example i want to
Is there a function I can call to know if a certain element is
Is there a C function which can do the equivalent of find_first_not_of, receiving a
Is there a PHP function which can accept the image path of a PNG-24

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.