Have you tried using the tree command (through the command-line terminal)?
- Cal
From: bitcurat...@googlegroups.com <bitcurat...@googlegroups.com>
On Behalf Of Holly Deakyne
Sent: Thursday, May 15, 2025 9:25 AM
To: BitCurator Users <bitcurat...@googlegroups.com>
Subject: Directory printer
You don't often get email from paz...@gmail.com. Learn why this is important |
--
You received this message because you are subscribed to the Google Groups "BitCurator Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
bitcurator-use...@googlegroups.com.
To view this discussion visit
https://groups.google.com/d/msgid/bitcurator-users/864a05d4-1428-48c3-8e7b-31f1e059a14bn%40googlegroups.com.
--
Get-ChildItem "F:\KD-85" -Recurse -File | ForEach-Object {
[PSCustomObject]@{
FolderPath = $_.DirectoryName
FileName = $_.Name
FullPath = $_.FullName
SizeBytes = $_.Length
Modified = $_.LastWriteTime
}
} | Export-Csv -Path "C:\TapeExports\KD-85_FileListing.csv" -NoTypeInformation -Encoding UTF8
ChatGPT gave me this one which worked pretty good. "F:\KD-85" is the pointer to your file location and name.
To view this discussion visit https://groups.google.com/d/msgid/bitcurator-users/CAP6L3cfR7yXhurKdiO9waeAVs3O_rKPyPbpKAnhBut4tRdAeXA%40mail.gmail.com.