File list of folder contents

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

Hi

is there a way in Vist Ultimate, or with an add on program,
to save a list of the folder contents so
they can be printed or
loaded into a spreadsheet?

thanks

Daniel
 
In Notepad, copy the following (between the dashes):

-------------------------------------------------

@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad /p "%temp%\Listing"
del "%temp%\Listing"
exit
 
great

thanks for your help

cheers

Daniel
dean-dean said:
In Notepad, copy the following (between the dashes):

-------------------------------------------------

@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad /p "%temp%\Listing"
del "%temp%\Listing"
exit
 
Attached is a file you can put into Sendto or place on the desktop (or
wherever you want to) and either right click a folder, incl special folders
(drop Contacts on it), and Send To - PrintDetailsAppend (you can Rename with
spaces if you want) or, drop a folder onto a file.

It generates a 267 column CSV file (on the desktop) for importing into
Excel. This Vista Version lists the 267 properties an item in the shell may
have (compared to XP's 50 odd).

You then delete columns that you don't want the properties.

These are the properties it lists,

Name, Size, Type, Date modified, Date created, Date accessed, Attributes,
Offline status, Offline availability, Perceived type, Owner, Kinds, Date
taken, Artists, Album, Year, Genre, Conductors, Tags, Rating, Authors,
Title, Subject, Categories, Comments, Copyright, #, Length, Bit rate,
Protected, Camera model, Dimensions, Camera maker, Company, File
description, Program name, Duration, Is online, Is recurring, Location,
Optional attendee addresses, Optional attendees, Organizer address,
Organizer name, Reminder time, Required attendee addresses, Required
attendees, Resources, Free/busy status, Total size, Account name, Computer,
Anniversary, Assistant's name, Assistant's phone, Birthday, Business
address, Business city, Business country/region, Business P.O. box, Business
postal code, Business state or province, Business street, Business fax,
Business home page, Business phone, Callback number, Car phone, Children,
Company main phone, Department, E-mail Address, E-mail2, E-mail3, E-mail
list, E-mail display name, File as, First name, Full name, Gender, Given
name, Hobbies, Home address, Home city, Home country/region, Home P.O. box,
Home postal code, Home state or province, Home street, Home fax, Home phone,
IM addresses, Initials, Job title, Label, Last name, Mailing address, Middle
name, Cell phone, Nickname, Office location, Other address, Other city,
Other country/region, Other P.O. box, Other postal code, Other state or
province, Other street, Pager, Personal title, City, Country/region, P.O.
box, Postal code, State or province, Street, Primary e-mail, Primary phone,
Profession, Spouse, Suffix, TTY/TTD phone, Telex, Webpage, Status, Content
type, Date acquired, Date archived, Date completed, Date imported, Client
ID, Contributors, Content created, Last printed, Date last saved, Division,
Document ID, Pages, Slides, Total editing time, Word count, Due date, End
date, File count, Filename, File version, Flag color, Flag status, Space
free, Bit depth, Horizontal resolution, Width, Vertical resolution, Height,
Importance, Is attachment, Is deleted, Has flag, Is completed, Incomplete,
Read status, Shared, Creator, Date, Folder name, Folder path, Folder,
Participants, Path, Contact names, Entry type, Language, Date visited,
Description, Link status, Link target, URL, Media created, Date released,
Encoded by, Producers, Publisher, Subtitle, User web URL, Writers,
Attachments, Bcc addresses, Bcc names, Cc addresses, Cc names, Conversation
ID, Date received, Date sent, From addresses, From names, Has attachments,
Sender address, Sender name, Store, To addresses, To do title, To names,
Mileage, Album artist, Beats-per-minute, Composers, Initial key, Mood, Part
of set, Period, Color, Parental rating, Parental rating reason, Space used,
EXIF version, Event, Exposure bias, Exposure program, Exposure time, F-stop,
Flash mode, Focal length, 35mm focal length, ISO speed, Lens maker, Lens
model, Light source, Max aperture, Metering mode, Orientation, Program mode,
Saturation, Subject distance, White balance, Priority, Project, Channel
number, Episode name, Closed captioning, Rerun, SAP, Broadcast date, Program
description, Recording time, Station call sign, Station name, Auto summary,
Summary, Search ranking, Sensitivity, Shared with, Product name, Product
version, Source, Start date, Billing information, Complete, Task owner,
Total file size, Legal trademarks, Video compression, Directors, Data rate,
Frame height, Frame rate, Frame width, Total bitrate,
 
Back
Top