How to Export a Folder File List to Excel (Free, No Upload) — For Office & Corporate Teams

If you work in a corporate office, chances are you have lost time hunting for a file on a shared drive, or been asked to produce a list of every document in a folder for an audit, handover, or compliance check. Manually typing out file names into a spreadsheet is slow and error-prone. This guide shows you how to export a complete list of files from any folder straight into Excel in seconds — free, in your browser, with nothing installed and nothing uploaded.

Why office teams need a folder-to-Excel file list

Across finance, legal, media, HR and IT teams, a few tasks come up again and again: building a file inventory of a project folder, auditing what is stored on a shared network drive, documenting deliverables before a client handover, or simply cleaning up duplicated and outdated files. A spreadsheet of file names, sizes, types and dates makes all of these jobs faster and far more accurate.

The problem is that most solutions require installing desktop software — something many corporate machines block — or uploading sensitive files to an unknown website, which is a data-security risk. Neither is acceptable in a professional environment.

The fastest way: a browser-based folder report generator

The free Folder Report Generator on apps2help.com solves exactly this. You select a folder, and it instantly produces a categorised Excel report containing every file’s name, full path, type, category, size and last-modified date — across subfolders too. Crucially, it runs 100% inside your browser: your files never leave your computer and nothing is uploaded to any server, which makes it safe to use even with confidential corporate data.

How to export a folder file list to Excel (step by step)

  1. Open the Folder Report Generator in Chrome, Edge or any modern browser.
  2. Click Select Folder & Scan and choose the folder you want to document — it works on local drives, USB sticks and external HDDs.
  3. Download the generated Excel report. You get a master sheet plus one tab per file type (PDFs, images, documents, spreadsheets, and more).
  4. Optionally paste the folder’s full path to make every file name a clickable link that opens the document directly from your computer.

What you can do with the exported file inventory

Once your folder contents are in Excel, the usual office workflows open up: sort by size to find the biggest space-wasters, filter by date to spot stale files, group by type to separate documents from media, or use it as an audit trail and attach it to a project report. Because it is a standard spreadsheet, you can pivot, chart and share it like any other workbook.

Keep your data private

For corporate users, the most important point is privacy. Unlike online “upload-your-files” services, this tool reads your folder locally and builds the spreadsheet in your browser. Nothing is transmitted, stored, or seen by anyone else — a key reason it is suitable for regulated and enterprise environments. You can read more in our Privacy Policy.

More free tools for office productivity

apps2help.com offers a range of no-install, privacy-first tools that office teams use every day, including an Image Compressor for shrinking attachments before email, a Word Counter for reports and posts, an EMI Calculator and GST Calculator for finance work, and a secure Password Generator. All of them run entirely in your browser.

Frequently asked questions

Can I list all files in a folder including subfolders? Yes — the report includes files from nested subfolders, with each file’s full path.

Does it work without installing software? Yes. It is entirely browser-based, so there is nothing to download or install — ideal for locked-down corporate computers.

Are my files uploaded anywhere? No. Everything happens locally in your browser; your files are never uploaded or shared.

Ready to try it? Open the free Folder Report Generator and export your first file list to Excel in seconds.

Try it now: Folder Report Generator — free, runs entirely in your browser, nothing is uploaded.

Why every operating system makes this awkward

Getting a list of filenames out of a folder ought to be trivial, and on every major platform it is not. Windows Explorer will copy the files themselves, not their names. Finder shows a list view that looks like a spreadsheet and refuses to export it. The traditional answers are a command prompt, a PowerShell one-liner, or software you may not have permission to install on a work machine.

A browser can do it directly. Modern browsers expose a directory picker that grants a page read access to a folder you explicitly choose. The page walks the tree, reads what each entry reports, and assembles a spreadsheet — all locally.

What you get, and what you do not

PropertyAvailableNotes
File nameYesWith extension
Relative pathYesRebuilt from the folder walk
Size in bytesYesExact count, format it yourself
Last modifiedYesFrom the file system
Created dateNoNot exposed to browsers on any platform
Author, EXIF, document propertiesNoWould require parsing each file
Owner and permissionsNoDeliberately withheld from web pages

If your task genuinely depends on creation dates or document authors, a scripted approach is the right tool. For names, paths, sizes and modified dates — which covers most inventory and audit work — the browser is sufficient.

What to do with the spreadsheet once you have it

  1. Total the size. Sum the byte column and divide by 1,073,741,824 for gigabytes. Note that this will differ from what your file manager reports, which usually shows space occupied on disk.
  2. Find the big items. Sort by size descending. The top fifty rows are typically most of the total.
  3. Find stale material. Sort by modified date ascending. Anything untouched for two years is an archive candidate.
  4. Find duplicates. Add a filename-only column and use =COUNTIFS(B:B,B2,C:C,C2) matching name and byte size. Values above 1 are strong candidates.
  5. Break down by type. Extract the extension with =RIGHT(A2,LEN(A2)-FIND("|",SUBSTITUTE(A2,".","|",LEN(A2)-LEN(SUBSTITUTE(A2,".",""))))) and pivot on it.
  6. Spot the sensitive files. Filter names for terms like tax, salary, passport, contract or invoice before you share a folder with anyone.

Formatting sizes so they read properly

Keep the raw byte column and add a formatted one alongside. For megabytes, =A2/1048576 formatted to one decimal. For automatic units, =IF(A2<1024,A2&" B",IF(A2<1048576,ROUND(A2/1024,1)&" KB",ROUND(A2/1048576,1)&" MB")). Do not delete the raw column — sorting a text column that mixes "900 KB" and "1.2 MB" sorts alphabetically and puts them in the wrong order.

Things that catch people out

  • Cloud placeholders. OneDrive, Dropbox and Drive often keep files as small stubs until opened, so sizes may be reported far below the true figure. Make the folder available offline first if totals look implausible.
  • Hidden and system files. Entries like .DS_Store and Thumbs.db are real files and will appear. Filter them out in the spreadsheet.
  • Shortcuts and symbolic links. Reported at their own tiny size, not the size of what they point to.
  • Very large trees. Pointing the picker at an entire user profile can mean hundreds of thousands of entries. Start with a subfolder.
  • Archives. A ZIP is one file. The walk does not look inside it.

Filenames are more revealing than people realise

Before sending a folder inventory to anyone, read the path column. Something like HR/Exits/2025/lastname-settlement-final.pdf discloses a great deal without a single file being opened. Strip or truncate the path column if the recipient does not need it, and think twice before pasting a file list into a chat or a ticket.

This is also the reason the walk should happen locally. A tool that reads the folder in your browser and builds the spreadsheet in the page never transmits any filename anywhere. You can verify it by opening the Network panel in developer tools while a scan runs, or by disconnecting from the internet after the page loads and scanning anyway.