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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:50:22+00:00 2026-05-15T07:50:22+00:00

I need to get a list of all files in a given IsolatedStorage folder.

  • 0

I need to get a list of all files in a given IsolatedStorage folder. There are sub folders off the root of the IsolatedStorage and these need to be included in the list.

The usual System.IO classes can’t be used with IsolatedStorage.

  • 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-15T07:50:23+00:00Added an answer on May 15, 2026 at 7:50 am

    Here’s what I’ve come up with – it works but I’d be interested to see if there are better alternatives:

    using System.Collections.Generic;
    using System.IO;
    using System.IO.IsolatedStorage;
    using System.Linq;
    
    public static class IsolatedStorageFileExtensions
    {
    
        /// <summary>
        /// Recursively gets a list of all files in isolated storage
        /// </summary>
        /// <remarks>Based on <see cref="http://dotnetperls.com/recursively-find-files"/></remarks>
        /// <param name="isolatedStorageFile"></param>
        /// <returns></returns>
        public static List<string> GetAllFilePaths(this IsolatedStorageFile isolatedStorageFile)
        {
            // Store results in the file results list
            List<string> result = new List<string>();
    
            // Store a stack of our directories
            Stack<string> stack = new Stack<string>();
    
            // Add initial directory
            string initialDirectory = "*";
            stack.Push(initialDirectory);
    
            // Continue while there are directories to process
            while (stack.Count > 0)
            {
                // Get top directory
                string dir = stack.Pop();
    
                string directoryPath;
                if (dir == "*")
                {
                    directoryPath = "*";
                }
                else
                {
                    directoryPath = dir + @"\*";
                }
    
                // Add all files at this directory to the result List
                var filesInCurrentDirectory = isolatedStorageFile.GetFileNames(directoryPath).ToList<string>();
    
                List<string> filesInCurrentDirectoryWithFolderName = new List<string>();
    
                // Prefix the filename with the directory name
                foreach (string file in filesInCurrentDirectory)
                {
                    filesInCurrentDirectoryWithFolderName.Add(Path.Combine(dir, file));
                }
    
                result.AddRange(filesInCurrentDirectoryWithFolderName);
    
                // Add all directories at this directory
                foreach (string directoryName in isolatedStorageFile.GetDirectoryNames(directoryPath))
                {
                    stack.Push(directoryName);
                }
    
            }
    
            return result;
    
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a get a list of all databases in a Couchdb server inside
I need to get a list of all tables that are published for replication
I have a List<List<String>> I need to get a List of all possible concatenation
All I need is to get the list of currently open documents in the
I need to list out the names of the files based on given type.
Is it possible to get a list of all generated tags for a given
I need to recursively list all directories and files in C programming. I have
I want to list all the names of files recursively from a folder. Checked
i have a problem with sql query. I need to get list of users.
I need to get a list of tags in a text, make their contents

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.