Everything to Copy file names with modified date for multi files

Discussion related to "Everything" 1.5 Alpha.
Post Reply
dclayburg
Posts: 6
Joined: Thu Oct 19, 2023 3:10 pm

Everything to Copy file names with modified date for multi files

Post by dclayburg »

Hello , I would like to copy file names with modified dates both together at the same time without the need of making one copy for files names and then add the result after copying results from other column

like

Nuduari_qi.MP3 2020-06-09 07:37:00


Thanx.
void
Developer
Posts: 15480
Joined: Fri Oct 16, 2009 11:31 pm

Re: Everything to Copy file names with modified date for multi files

Post by void »

From the Bookmarks menu, click Add to bookmarks...
Change the Name to:
Copy Name and Date Modified

Change the Search to:
/copy $name: <formatfiletime:$date-modified:>

Click OK.

Select your files and run this bookmark.
Adjust the bookmark search as needed.

/copy
<formatfiletime:...>
dclayburg
Posts: 6
Joined: Thu Oct 19, 2023 3:10 pm

Re: Everything to Copy file names with modified date for multi files

Post by dclayburg »

Where can i set these ?

Change the Name to:
Copy Name and Date Modified

Change the Search to:
/copy $name: <formatfiletime:$dm:>
void
Developer
Posts: 15480
Joined: Fri Oct 16, 2009 11:31 pm

Re: Everything to Copy file names with modified date for multi files

Post by void »

From the Bookmarks menu, click Add to bookmarks.
dclayburg
Posts: 6
Joined: Thu Oct 19, 2023 3:10 pm

Re: Everything to Copy file names with modified date for multi files

Post by dclayburg »

It's a bit complicated , I see now , thank you

Wish it can be more simple , how about an option to save current results with current columns to .txt file because when I tried to export it only copied the filename with it's path however I Dates column was on.

Thank you
void
Developer
Posts: 15480
Joined: Fri Oct 16, 2009 11:31 pm

Re: Everything to Copy file names with modified date for multi files

Post by void »

Please try exporting as CSV:
  • In Everything, from the File menu, click Export....
  • Change Save As Type to: CSV
  • Choose a filename and click Save.
dclayburg
Posts: 6
Joined: Thu Oct 19, 2023 3:10 pm

Re: Everything to Copy file names with modified date for multi files

Post by dclayburg »

Thank you , this one is easy. all good.
tuska
Posts: 938
Joined: Thu Jul 13, 2017 9:14 am

Re: Everything to Copy file names with modified date for multi files

Post by tuska »

2void
Perhaps one could also include the column headings here?

Code: Select all

/copy $name: | $size: | <formatfiletime:$date-modified:> 

Code: Select all

Filters.csv | 14133 | 20.01.2024 14:59

Request

Code: Select all

Name        | Size  | Date Modified
Filters.csv | 14133 | 20.01.2024 14:59
This would allow you to clearly identify the date column (Date Modified, Date Created, Date Accessed, etc.),
without having to call up the bookmark first to see what you have saved there.

Another example:
If the focus is mistakenly on an image file and I use my shortcut as usual for
/copy $name: | $size: | <formatfiletime:$date-modified:> 
instead of correctly
/copy $name: | $size: | <formatfiletime:$date-taken:> 
then I get an unwanted date as a result.
--------------

After executing the shortcut for the bookmark, the selected files are deselected
and scrolled to the bottom of the screen, although they were still at the top of the results list at first.

E.g. with this setting the focus remains and the file is not deselected:
Everything Options > Keyboard > File | Copy Full Name to Clipboard > CTRL+SHIFT+C (Result List)

Please check.
___________________________________
Everything 1.5.0.1366a-mod1 (1367a x64)
NotNull
Posts: 5298
Joined: Wed May 24, 2017 9:22 pm

Re: Everything to Copy file names with modified date for multi files

Post by NotNull »

Good news: configuring the copy_as_csv_header to true in Advanced Options will create this header.
(untested though)
tuska
Posts: 938
Joined: Thu Jul 13, 2017 9:14 am

Re: Everything to Copy file names with modified date for multi files

Post by tuska »

NotNull wrote: Sat Jan 20, 2024 5:00 pm Good news: configuring the copy_as_csv_header to true in Advanced Options will create this header.
(untested though)
Thank you, but unfortunately it doesn't work for me.
void
Developer
Posts: 15480
Joined: Fri Oct 16, 2009 11:31 pm

Re: Everything to Copy file names with modified date for multi files

Post by void »

With copy_as_csv_header enabled, please try the Copy As CSV command.

From the Bookmarks menu, click Add to bookmarks...

Change the Name to:
Copy as CSV


Change the Search to:
/command 41067


Click OK.

(alternatively, bind a keyboard shortcut to Copy As CSV from Tools -> Options -> Keyboard)



To copy As TSV (tab separated values):

From the Bookmarks menu, click Add to bookmarks...

Change the Name to:
Copy as TSV


Change the Search to:
/command 41096


Click OK.

(alternatively, bind a keyboard shortcut to Copy As TSV from Tools -> Options -> Keyboard)



To copy the header when copying as TSV:
  • In Everything 1.5, from the Tools menu, click Options.
  • Click the Advanced tab on the left.
  • To the right of Show settings containing, search for:
    tsv
  • Select: copy_as_tsv_header
  • Set the value to: true
  • Click OK.
copy_as_csv_header
copy_as_tsv_header
Command IDs
Post Reply