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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:58:37+00:00 2026-05-26T05:58:37+00:00

Currently I am getting the size of a file by using: FileInfo fileSize =

  • 0

Currently I am getting the size of a file by using:

FileInfo fileSize = new FileInfo(@"C:\file.txt");
long size = fileSize.Length;

Rather than do this for every file I want, I thought you must be able to use an array and iterate through them so I used this:

FileInfo[] fileSizes = new FileInfo[2];
fileSizes[0] = @"C:\file.txt";
fileSizes[1] = @"C:\file.txt";

Now I keep getting the error “Cannot implicitly convert type ‘string’ to ‘System.IO.FileInfo'”. I tried using .ToString() but no dice, any help is very appreciated, thanks!

  • 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-26T05:58:37+00:00Added an answer on May 26, 2026 at 5:58 am

    You shouldn’t store multiple files in a FileInfo array. To fix your error, you need to do this:

    FileInfo[] fileSizes = new FileInfo[3];
    fileSizes[0] = new FileInfo(@"C:\file.txt");
    fileSizes[1] = new FileInfo(@"C:\file.txt");
    fileSizes[2] = new FileInfo(@"C:\file.txt");
    

    However, you should store them like this (below) and iterate through the list and load one FileInfo at a time:

    String[] files = new String[3];
    files[0] = @"C:\file.txt";
    files[1] = @"C:\file.txt";
    files[2] = @"C:\file.txt";
    
    foreach (String file in files)
    {
        FileInfo info = new FileInfo(file);
        // do something with info.Length
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using prepared statements and MySQLi, and am currently getting this error. PHP Catchable
I am currently getting first day Of this week and last week values with
I am currently getting images from the 'Documents' directory (using -imageWithContentsOfFile:) with no problems
I'm doing a Firefox addon but I'm currently getting this error in the Error
I'm pretty new to cocoa for Mac development. I'm currently struggling with getting a
I'm using a flash/ajax file upload in php based on this site - http://blog.codeville.net/2008/11/24/jquery-ajax-uploader-plugin-with-progress-bar/
I'm using sorl-thumbnail in a Django 1.2 (currently 1.2 RC) project and getting a
i made the image re size Handler. i am getting this Exception. HttpApplication.ExecuteStep =>
I'm currently getting a Could not load type UI.Administration.Site.master error message and I'm not
I'm currently getting all the Select elements that exist in a form with the

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.