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 901967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:38:39+00:00 2026-05-15T15:38:39+00:00

I have this code: public void FileCleanup(List<string>paths) { string regPattern = (@[~#&!%+{}]+); string replacement

  • 0

I have this code:

   public void FileCleanup(List<string>paths)
    {
        string regPattern = (@"[~#&!%+{}]+");
        string replacement = "";
        Regex regExPattern = new Regex(regPattern);

        foreach (string files2 in paths)
            try
            {
                string filenameOnly = Path.GetFileName(files2);
                string pathOnly = Path.GetDirectoryName(files2);
                string sanitizedFileName = regExPattern.Replace(filenameOnly, replacement);
                string sanitized = Path.Combine(pathOnly, sanitizedFileName);
                //write to streamwriter
                System.IO.File.Move(files2, sanitized);



            }

Now, my question is, how do i make sure that before the .Replace(), that the app first checks to see if the filename does NOT exist?
I noticed my app, when given these test files: ###test.txt, #~test.txt will NOT remove invalid chars because after a rename, they will both have the same filename (test.txt).
If it does, i want it to go to another foreach loop where i switch the invalid char to a specific char (versus a blank). Code would really help.

Thank you!

  • 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-05-15T15:38:40+00:00Added an answer on May 15, 2026 at 3:38 pm

    You can use File.Exists to check to see if the file already exists. Here’s the reference:
    http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx

    So in your example:

    string sanitized = Path.Combine(pathOnly, sanitizedFileName);
    if (!System.IO.File.Exists(sanitized))
    {
        // perform the move
        System.IO.File.Move(files2, sanitized);
    }
    else
    {
        // perform other action
    }
    

    And as ChrisF helpfully mentioned in the comments section to your question, you can use Path.GetInvalidFileNameChars and Path.GetInvalidPathChars for making sure the filename is valid.

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

Sidebar

Ask A Question

Stats

  • Questions 511k
  • Answers 511k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The problem was that I didn't read carefully the documentation… May 16, 2026 at 5:15 pm
  • Editorial Team
    Editorial Team added an answer You need to set a Filter on your profile. Do… May 16, 2026 at 5:15 pm
  • Editorial Team
    Editorial Team added an answer Both approaches sound valid, but if you can design your… May 16, 2026 at 5:15 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have the following code: public void DriveRecursion(string retPath) { string pattern = @[~#&!%\+\{\}]+;
I have this code: public void Contacts(string domainToBeTested, string[] browserList, string timeOut, int numberOfBrowsers)
I have this code: public void replay() { long previous = DateTime.Now.Ticks; for (int
I have this code: public void setPanelHalfHorizontalScreen(Panel p) { if (p != null) {
I have this code: public class Home extends Activity{ @Override public void onCreate(Bundle savedInstanceState)
now I have this: public void focusChanged(Field field, int eventType) { if ( field
I have this code which Invokes a MethodInfo: try { registrator.Method.Invoke(instance, parameters); } catch{
This is my code: public class RegularPolygon { public int VertexCount; public double SideLength;
I have a question regarding the following code: abstract class a { public static
When should I use the this -keyword for properties in code? public class MyClass

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.