U unbrakochaz Jul 5, 2019 3 0 10 Jul 5, 2019 #1 Is there an easy way to get the list of images in a folder into a spreadsheet?
jeremyj_83 Glorious Aug 23, 2017 5,361 1,913 44,440 Jul 5, 2019 #2 While I don't have the script written, it should be able to be done using powershell. Upvote 0 Downvote
U unbrakochaz Jul 5, 2019 3 0 10 Jul 5, 2019 #3 I'm afraid I'm not familar with powershell. Is it a CMD prompt tool? Upvote 0 Downvote
USAFRet Titan Moderator Mar 16, 2013 177,998 21,117 184,590 Jul 5, 2019 #4 Sure, mostly. From a commandline, you can output the contents of a folder to a txt file. Navigate to the folder in question. The actual command would be: dir *.png > printit.txt Resulting in a text file that looks like this: Then, open that in Excel. Space delimited. Depending on how your files are named, It may require some cleanup, but it is all there. Upvote 0 Downvote
Sure, mostly. From a commandline, you can output the contents of a folder to a txt file. Navigate to the folder in question. The actual command would be: dir *.png > printit.txt Resulting in a text file that looks like this: Then, open that in Excel. Space delimited. Depending on how your files are named, It may require some cleanup, but it is all there.
U unbrakochaz Jul 5, 2019 3 0 10 Jul 5, 2019 #5 nice one, thnak you and thinking about it if I create a .csv it will open straight into Excel with a double click Upvote 0 Downvote
nice one, thnak you and thinking about it if I create a .csv it will open straight into Excel with a double click
USAFRet Titan Moderator Mar 16, 2013 177,998 21,117 184,590 Jul 5, 2019 #6 unbrakochaz said: nice one, thnak you and thinking about it if I create a .csv it will open straight into Excel with a double click Click to expand... Yes, but depending on how your files are named, the comma may impact what ends up in which column. Try it both ways. Takes but a second or two. Upvote 0 Downvote
unbrakochaz said: nice one, thnak you and thinking about it if I create a .csv it will open straight into Excel with a double click Click to expand... Yes, but depending on how your files are named, the comma may impact what ends up in which column. Try it both ways. Takes but a second or two.